Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 42d3e99a authored by gsell's avatar gsell
Browse files

boost::chrono replace with std::chrono

parent 19c77a19
No related branches found
No related tags found
1 merge request!657Resolve "replace boost::chrono with std::chrono"
......@@ -55,7 +55,6 @@
#include "Optimizer/EA/Population.h"
#include "Optimizer/EA/Variator.h"
#include <boost/chrono.hpp>
#include <boost/property_tree/ptree.hpp>
#include "Util/Trace/Trace.h"
......@@ -242,8 +241,8 @@ private:
/// file header for result files contains this parameter description
std::string file_param_descr_;
boost::chrono::system_clock::time_point run_clock_start_;
boost::chrono::system_clock::time_point last_clock_;
std::chrono::system_clock::time_point run_clock_start_;
std::chrono::system_clock::time_point last_clock_;
// DEBUG output helpers
std::unique_ptr<Trace> job_trace_;
......
......@@ -22,7 +22,6 @@
#define __TIMESTAMP_H__
#include <sstream>
#include <boost/chrono.hpp>
#include <ctime>
#include "Util/Trace/TraceComponent.h"
......@@ -40,9 +39,9 @@ public:
void execute(std::ostringstream &dump) {
boost::chrono::time_point<boost::chrono::system_clock> now;
now = boost::chrono::system_clock::now();
std::time_t now_time = boost::chrono::system_clock::to_time_t(now);
std::chrono::time_point<std::chrono::system_clock> now;
now = std::chrono::system_clock::now();
std::time_t now_time = std::chrono::system_clock::to_time_t(now);
std::ostringstream timestamp;
timestamp << std::ctime(&now_time);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment