summaryrefslogtreecommitdiff
path: root/src/ctor.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-10 16:00:36 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 17:13:24 +0100
commit1484d74c1dfd24cfe5b6f13f76d58ff395e4d253 (patch)
tree2f71f2aa6d6dd29eda51924f985de7f9caee78c0 /src/ctor.h
parentf31661d392c1332ceb0edcbc9fd35f4cb49bb50d (diff)
Put ctor.h contents in ctor namespace.
Diffstat (limited to 'src/ctor.h')
-rw-r--r--src/ctor.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ctor.h b/src/ctor.h
index 96e1115..9770c09 100644
--- a/src/ctor.h
+++ b/src/ctor.h
@@ -11,6 +11,8 @@
#include <cstddef>
#include <functional>
+namespace ctor {
+
enum class TargetType
{
Auto, // Default - deduce from target name and sources extensions
@@ -152,3 +154,5 @@ const Configuration& configuration();
bool hasConfiguration(const std::string& key);
const std::string& getConfiguration(const std::string& key,
const std::string& defaultValue = {});
+
+} // namespace ctor::