Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Missing #include<mutex> necessary to use std::unique_lock. According to
http://en.cppreference.com/w/cpp/thread/unique_lock the correct header
is <mutex>.
  • Loading branch information
nathanielhourt committed May 31, 2017
1 parent 98d2ebf commit 4643586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/fc/src/log/console_appender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <fc/exception/exception.hpp>
#include <iomanip>
#include <sstream>

#include <mutex>

namespace fc {

Expand Down

0 comments on commit 4643586

Please sign in to comment.