summaryrefslogtreecommitdiff
path: root/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/reporters/process_default_formatter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/reporters/process_default_formatter.hpp')
-rwxr-xr-xsrc/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/reporters/process_default_formatter.hpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/reporters/process_default_formatter.hpp b/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/reporters/process_default_formatter.hpp
deleted file mode 100755
index 4b3c1c58e92..00000000000
--- a/src/third_party/boost-1.56.0/libs/chrono/stopwatches/include/boost/chrono/stopwatches/reporters/process_default_formatter.hpp
+++ /dev/null
@@ -1,42 +0,0 @@
-// boost/chrono/stopwatches/reporters/process_default_formatter.hpp
-// Copyright 2011 Vicente J. Botet Escriba
-// Copyright (c) Microsoft Corporation 2014
-// 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_REPORTERS_PROCESS_DEFAULT_FORMATTER_HPP
-#define BOOST_CHRONO_STOPWATCHES_REPORTERS_PROCESS_DEFAULT_FORMATTER_HPP
-
-#include <boost/chrono/config.hpp>
-
-#include <boost/chrono/stopwatches/reporters/stopwatch_reporter_default_formatter.hpp>
-#include <boost/chrono/stopwatches/reporters/clock_default_formatter.hpp>
-#include <boost/chrono/stopwatches/formatters/elapsed_formatter.hpp>
-#include <boost/chrono/stopwatches/formatters/times_formatter.hpp>
-#include <boost/chrono/process_cpu_clocks.hpp>
-
-#if defined(BOOST_CHRONO_HAS_PROCESS_CLOCKS)
-
-namespace boost
-{
- namespace chrono
- {
-#if ! BOOST_OS_WINDOWS || BOOST_PLAT_WINDOWS_DESKTOP
-
- template <typename CharT>
- struct basic_clock_default_formatter<CharT, process_cpu_clock>
- {
- typedef basic_times_formatter<milli, CharT> type;
- };
-
-#endif
- } // namespace chrono
-} // namespace boost
-
-
-#endif
-
-#endif
-