diff options
| author | mitchell <unknown> | 2020-01-06 20:29:15 -0500 |
|---|---|---|
| committer | mitchell <unknown> | 2020-01-06 20:29:15 -0500 |
| commit | 3000cb8290100ca6196403a862d918c00fab729e (patch) | |
| tree | 76d81f29cff536fe5f71398c54bf4abf0ac40836 | |
| parent | 4d75c2a9dc44b0bb8ef8c2bc8ce4424414e8ab9a (diff) | |
| download | scintilla-mirror-3000cb8290100ca6196403a862d918c00fab729e.tar.gz | |
Fixed runtime error introduced by r7925 (changset 58e9ef4392cd).
| -rw-r--r-- | include/Compat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Compat.h b/include/Compat.h index b4a9437c2..b6d41e591 100644 --- a/include/Compat.h +++ b/include/Compat.h @@ -23,13 +23,13 @@ inline constexpr T clamp(T val, T minVal, T maxVal) { // std::round (not present on older MacOSX SDKs) template<class T> T round(T arg) { - return round(arg); + return ::round(arg); } // std::lround (not present on older MacOSX SDKs) template<class T> long lround(T arg) { - return lround(arg); + return ::lround(arg); } // std::make_unique |
