diff options
| author | Per Larsson <[email protected]> | 2021-09-17 13:11:04 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-09-17 13:11:04 +0200 |
| commit | d812fcc3eab88733cbef084eefd089d22177aae4 (patch) | |
| tree | bb64fa6c64f9707246577de148749b35d1e25987 /zencore/zencore.cpp | |
| parent | Added helper function for iterating string tokens. (diff) | |
| parent | Added namespace scopes to more includes for better consistency (diff) | |
| download | zen-d812fcc3eab88733cbef084eefd089d22177aae4.tar.xz zen-d812fcc3eab88733cbef084eefd089d22177aae4.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zencore/zencore.cpp')
| -rw-r--r-- | zencore/zencore.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/zencore/zencore.cpp b/zencore/zencore.cpp index f179880e4..5899f014d 100644 --- a/zencore/zencore.cpp +++ b/zencore/zencore.cpp @@ -28,6 +28,8 @@ #include <zencore/timer.h> #include <zencore/uid.h> +namespace zen { + bool IsPointerToStack(const void* ptr) { @@ -53,11 +55,11 @@ IsPointerToStack(const void* ptr) #endif } -zen::AssertException::AssertException(const char* Msg) : m_Msg(Msg) +AssertException::AssertException(const char* Msg) : m_Msg(Msg) { } -zen::AssertException::~AssertException() +AssertException::~AssertException() { } @@ -101,3 +103,5 @@ zencore_forcelinktests() zen::usonbuilder_forcelink(); zen::usonpackage_forcelink(); } + +} // namespace zen |