diff --git a/include/orm/tiny/types/syncchanges.hpp b/include/orm/tiny/types/syncchanges.hpp index 7b5886b4d..8a76dceb5 100644 --- a/include/orm/tiny/types/syncchanges.hpp +++ b/include/orm/tiny/types/syncchanges.hpp @@ -216,7 +216,7 @@ namespace Types {}, castKey, castKey); // Remove duplicates - // BUG clang doesn't compile with std::ranges::unique, I don't unserstand why silverqx + // BUG clang doesn't compile with std::ranges::unique, I don't understand why silverqx #if (defined(__GNUG__) && !defined(__clang__)) || (defined(_MSC_VER) && _MSC_VER >= 1929) auto [first, last] = std::ranges::unique(merged, {}, castKey); merged.erase(first, last);