summaryrefslogtreecommitdiff
path: root/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/collectors/no_memory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/collectors/no_memory.hpp')
-rwxr-xr-xsrc/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/collectors/no_memory.hpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/collectors/no_memory.hpp b/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/collectors/no_memory.hpp
deleted file mode 100755
index 7c68b6cb0f1..00000000000
--- a/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/collectors/no_memory.hpp
+++ /dev/null
@@ -1,36 +0,0 @@
-// boost/chrono/stopwatches/collectors/no_memory.hpp
-// Copyright 2011 Vicente J. Botet Escriba
-// Distributed under the Boost Software License, Version 1.0.
-// (See accompanying file LICENSE_1_0.txt or
-// copy at http://www.boost.org/LICENSE_1_0.txt)
-// See http://www.boost.org/libs/chrono/stopwatches for documentation.
-
-#ifndef BOOST_CHRONO_STOPWATCHES_MEMORIES_NO_MEMORY_HPP
-#define BOOST_CHRONO_STOPWATCHES_MEMORIES_NO_MEMORY_HPP
-
-
-namespace boost
-{
- namespace chrono
- {
-
- template<typename Duration>
- struct no_memory
- {
- typedef Duration duration;
-
- duration elapsed() const { return duration::zero(); }
- duration last() const { return duration::zero(); }
- void store(duration const& ) {}
- void reset() {}
-
- };
-
-
- } // namespace chrono
-} // namespace boost
-
-
-#endif
-
-