Skip to content
Snippets Groups Projects
Commit fb6dd483 authored by Boman Romain's avatar Boman Romain
Browse files

partially fix msvc build

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