From a0bde822ee3f7219fb3ff61e456335515189669a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 7 Jun 2019 17:14:16 +0200 Subject: [PATCH] AK: Add IterationDecision.h. --- AK/IterationDecision.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 AK/IterationDecision.h diff --git a/AK/IterationDecision.h b/AK/IterationDecision.h new file mode 100644 index 0000000000..26620ee438 --- /dev/null +++ b/AK/IterationDecision.h @@ -0,0 +1,12 @@ +#pragma once + +namespace AK { + +enum class IterationDecision { + Continue, + Break, +}; + +} + +using AK::IterationDecision;