diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2017-02-21 13:46:43 -0800 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2017-03-28 13:53:19 +0200 |
commit | 54cbdc4812c52894b1dbb34c786769e852f84f8c (patch) | |
tree | f6255f4cdc86c7b1d13415e6d3fa8d92ac21b82c /src | |
parent | 3db027751ed79832fccd769f2f5754d24c342a8a (diff) | |
download | qtlocation-mapboxgl-54cbdc4812c52894b1dbb34c786769e852f84f8c.tar.gz |
[core] Move ignore.hpp to public include directory
Diffstat (limited to 'src')
-rw-r--r-- | src/mbgl/util/ignore.hpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/mbgl/util/ignore.hpp b/src/mbgl/util/ignore.hpp deleted file mode 100644 index 577bcf4d91..0000000000 --- a/src/mbgl/util/ignore.hpp +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once - -#include <initializer_list> - -namespace mbgl { -namespace util { - -// Accept any number of parameters of any types, and do nothing with them. -// Useful for providing a context for parameter pack expansion where a legal -// expansion context is not otherwise available. -// -// See https://github.com/mapbox/cpp/blob/master/C%2B%2B%20Structural%20Metaprogramming.md -// for more details. -// -template <class... Ts> void ignore(Ts&&...) {} - -// std::initializer_list overload, for situations where you need sequenced -// modifications. -// -template <class T> void ignore(const std::initializer_list<T>&) {} - -// Handle the zero-argument case. -inline void ignore(const std::initializer_list<int>&) {} - -} // namespace util -} // namespace mbgl |