removed namespaces

This commit is contained in:
fourtf
2018-06-26 16:37:59 +02:00
parent 15abedd869
commit 2df0566492
273 changed files with 43 additions and 826 deletions
-2
View File
@@ -1,7 +1,6 @@
#pragma once
namespace chatterino {
namespace util {
// http://en.cppreference.com/w/cpp/algorithm/clamp
@@ -11,5 +10,4 @@ constexpr const T &clamp(const T &v, const T &lo, const T &hi)
return assert(!(hi < lo)), (v < lo) ? lo : (hi < v) ? hi : v;
}
} // namespace util
} // namespace chatterino