diff options
Diffstat (limited to 'src/buildtool/build_engine/base_maps/module_name.hpp')
-rw-r--r-- | src/buildtool/build_engine/base_maps/module_name.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/build_engine/base_maps/module_name.hpp b/src/buildtool/build_engine/base_maps/module_name.hpp index 84f5e837..8ff582c5 100644 --- a/src/buildtool/build_engine/base_maps/module_name.hpp +++ b/src/buildtool/build_engine/base_maps/module_name.hpp @@ -32,7 +32,7 @@ struct ModuleName { [[nodiscard]] auto operator==(ModuleName const& other) const noexcept -> bool { - return module == other.module && repository == other.repository; + return module == other.module and repository == other.repository; } }; } // namespace BuildMaps::Base |