diff options
Diffstat (limited to 'kapi')
| -rw-r--r-- | kapi/include/kapi/memory/frame.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kapi/include/kapi/memory/frame.hpp b/kapi/include/kapi/memory/frame.hpp index 1251e51..8bcf79f 100644 --- a/kapi/include/kapi/memory/frame.hpp +++ b/kapi/include/kapi/memory/frame.hpp @@ -59,7 +59,8 @@ namespace teachos::memory auto constexpr operator++(int) noexcept -> frame { auto copy = *this; - return ++copy; + ++*this; + return copy; } /** |
