diff options
| -rw-r--r-- | libs/kstd/include/kstd/shared_pointer.hpp (renamed from arch/x86_64/include/arch/stl/shared_pointer.hpp) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86_64/include/arch/stl/shared_pointer.hpp b/libs/kstd/include/kstd/shared_pointer.hpp index c9796a8..4717117 100644 --- a/arch/x86_64/include/arch/stl/shared_pointer.hpp +++ b/libs/kstd/include/kstd/shared_pointer.hpp @@ -1,9 +1,9 @@ -#ifndef TEACHOS_ARCH_X86_64_STL_SHARED_POINTER_HPP -#define TEACHOS_ARCH_X86_64_STL_SHARED_POINTER_HPP +#ifndef KSTD_SHARED_POINTER_HPP +#define KSTD_SHARED_POINTER_HPP #include <atomic> -namespace teachos::arch::stl +namespace kstd { /** * @brief Shared_pointer is a smart pointer that retains shared ownership of an object through a pointer. Several @@ -264,6 +264,6 @@ namespace teachos::arch::stl { return shared_pointer<T>(new T(std::forward<Args>(args)...)); } -} // namespace teachos::arch::stl +} // namespace kstd -#endif // TEACHOS_ARCH_X86_64_STL_SHARED_POINTER_HPP
\ No newline at end of file +#endif
\ No newline at end of file |
