diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-05 17:54:10 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-05 17:54:10 +0100 |
commit | dacdd54a805aac286e07582706d8a0e85d1f69a4 (patch) | |
tree | c847bd532939a08527d9d2a6d009a1d36c5b0fc7 /src/deep.hpp | |
parent | 723476a90cccc611f9c80f812f0b96541fab326e (diff) | |
download | lanes-dacdd54a805aac286e07582706d8a0e85d1f69a4.tar.gz lanes-dacdd54a805aac286e07582706d8a0e85d1f69a4.tar.bz2 lanes-dacdd54a805aac286e07582706d8a0e85d1f69a4.zip |
Fix gcc being unhappy with [[nodiscard]] enums
Diffstat (limited to 'src/deep.hpp')
-rw-r--r-- | src/deep.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deep.hpp b/src/deep.hpp index 7d61f42..f8cfa0d 100644 --- a/src/deep.hpp +++ b/src/deep.hpp | |||
@@ -9,7 +9,7 @@ | |||
9 | #include "uniquekey.hpp" | 9 | #include "uniquekey.hpp" |
10 | 10 | ||
11 | // forwards | 11 | // forwards |
12 | enum class [[nodiscard]] LookupMode; | 12 | enum class LookupMode; |
13 | class DeepFactory; | 13 | class DeepFactory; |
14 | class Universe; | 14 | class Universe; |
15 | 15 | ||