1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 16:55:08 +00:00
serenity/AK/IterationDecision.h
2019-06-07 17:14:16 +02:00

12 lines
122 B
C++

#pragma once
namespace AK {
enum class IterationDecision {
Continue,
Break,
};
}
using AK::IterationDecision;