diff options
author | 2016-03-30 08:35:21 +0200 | |
---|---|---|
committer | 2016-03-30 08:35:21 +0200 | |
commit | 913ab1e14041b81f3c9276ea3a7adfff32c0408c (patch) | |
tree | f4d630b889546e006e98de2ea05aa20d56c11303 /src/lib/util/strformat.h | |
parent | 21fe699db20e3354d92396d4a29f5fd648584437 (diff) |
Cleanups and version bump
Diffstat (limited to 'src/lib/util/strformat.h')
-rw-r--r-- | src/lib/util/strformat.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/util/strformat.h b/src/lib/util/strformat.h index 8eb5f791ed0..975f3f39de5 100644 --- a/src/lib/util/strformat.h +++ b/src/lib/util/strformat.h @@ -189,14 +189,14 @@ namespace std { template<class _Container> - inline constexpr auto - cbegin(const _Container& __cont) noexcept(noexcept(std::begin(__cont)))-> decltype(std::begin(__cont)) - { return std::begin(__cont); } + inline constexpr auto + cbegin(const _Container& __cont) noexcept(noexcept(std::begin(__cont)))-> decltype(std::begin(__cont)) + { return std::begin(__cont); } template<class _Container> - inline constexpr auto - cend(const _Container& __cont) noexcept(noexcept(std::end(__cont)))-> decltype(std::end(__cont)) - { return std::end(__cont); } + inline constexpr auto + cend(const _Container& __cont) noexcept(noexcept(std::end(__cont)))-> decltype(std::end(__cont)) + { return std::end(__cont); } } #endif |