Skip to content
Snippets Groups Projects
Commit cbb9a595 authored by Adrien Crovato's avatar Adrien Crovato
Browse files

Merge remote-tracking branch 'origin/boman' into adri

parents 5e53955f fb6dd483
No related branches found
No related tags found
1 merge request!1Version 0.1.0 (setup)
Pipeline #2149 failed
...@@ -87,7 +87,7 @@ void Timers::write(std::ostream &out) const ...@@ -87,7 +87,7 @@ void Timers::write(std::ostream &out) const
<< std::setw(15) << std::right << "CPU (s)" << std::setw(15) << std::right << "CPU (s)"
<< std::endl; << std::endl;
for (auto const tm : timers) for (auto const &tm : timers)
{ {
out << std::setw(20) << std::left << tm.first out << std::setw(20) << std::left << tm.first
<< std::setw(15) << std::right << tm.second.getWall() << std::setw(15) << std::right << tm.second.getWall()
......
...@@ -21,6 +21,8 @@ ...@@ -21,6 +21,8 @@
#include "wObject.h" #include "wObject.h"
#include <map> #include <map>
#include <chrono> #include <chrono>
#include <ctime>
#include <string>
namespace fpm namespace fpm
{ {
......
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