AK: Add IterationDecision.h.

This commit is contained in:
Andreas Kling 2019-06-07 17:14:16 +02:00
parent 39d1a9ae66
commit a0bde822ee
Notes: sideshowbarker 2024-07-19 13:41:01 +09:00

12
AK/IterationDecision.h Normal file
View File

@ -0,0 +1,12 @@
#pragma once
namespace AK {
enum class IterationDecision {
Continue,
Break,
};
}
using AK::IterationDecision;