summaryrefslogtreecommitdiffhomepage
path: root/Private/NewKit/Function.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Private/NewKit/Function.hpp')
-rw-r--r--Private/NewKit/Function.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Private/NewKit/Function.hpp b/Private/NewKit/Function.hpp
index 20d63f80..63bc31dc 100644
--- a/Private/NewKit/Function.hpp
+++ b/Private/NewKit/Function.hpp
@@ -3,7 +3,7 @@
#include <NewKit/Defines.hpp>
-namespace HCore {
+namespace NewOS {
template <typename T, typename... Args>
class Function final {
public:
@@ -34,6 +34,6 @@ class Function final {
private:
T (*m_Fn)(Args... args);
};
-} // namespace HCore
+} // namespace NewOS
#endif // !_INC_FUNCTION_HPP__