Compare commits

...

2 Commits

Author SHA1 Message Date
7534fe8969 removed unused defines 2025-09-03 12:52:00 +03:00
8e4f1812cc fix 2025-09-03 12:50:31 +03:00
2 changed files with 1 additions and 9 deletions

1
.idea/vcs.xml generated
View File

@@ -3,6 +3,5 @@
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$/extlibs/googletest" vcs="Git" />
<mapping directory="$PROJECT_DIR$/extlibs/vcpkg" vcs="Git" />
</component>
</project>

View File

@@ -11,13 +11,6 @@
#include <stdexcept>
#include <utility>
#ifdef near
#undef near
#endif
#ifdef far
#undef far
#endif
namespace omath
{
@@ -88,7 +81,7 @@ namespace omath
}
[[nodiscard]]
constexpr Type& operator[](const size_t row, const size_t col) const
constexpr const Type& operator[](const size_t row, const size_t col) const
{
return at(row, col);
}