diff options
Diffstat (limited to 'src/example')
-rw-r--r-- | src/example/log.cpp | 1 | ||||
-rw-r--r-- | src/example/proxy.cpp | 2 | ||||
-rw-r--r-- | src/example/savemgr.cpp | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/example/log.cpp b/src/example/log.cpp index 13d592b..5baa021 100644 --- a/src/example/log.cpp +++ b/src/example/log.cpp @@ -23,7 +23,6 @@ int main() { Log::logf("info message with variable: {}", 3); Log::logf(Log::Level::WARNING, "warning"); Log::logf(Log::Level::ERROR, "error"); - return 0; } diff --git a/src/example/proxy.cpp b/src/example/proxy.cpp index ca68d9a..69451f8 100644 --- a/src/example/proxy.cpp +++ b/src/example/proxy.cpp @@ -5,8 +5,8 @@ #include <crepe/ValueBroker.h> #include <crepe/api/Config.h> -#include <crepe/util/Proxy.h> #include <crepe/util/Log.h> +#include <crepe/util/Proxy.h> using namespace std; using namespace crepe; diff --git a/src/example/savemgr.cpp b/src/example/savemgr.cpp index 5a415b7..65c4a34 100644 --- a/src/example/savemgr.cpp +++ b/src/example/savemgr.cpp @@ -6,8 +6,8 @@ #include <cassert> #include <crepe/api/Config.h> #include <crepe/api/SaveManager.h> -#include <crepe/util/Proxy.h> #include <crepe/util/Log.h> +#include <crepe/util/Proxy.h> using namespace crepe; |