From 2f202e017c2fef0ad622d70b0c04951960037461 Mon Sep 17 00:00:00 2001 From: Michael Vandeberg Date: Fri, 2 Dec 2016 16:15:35 -0500 Subject: [PATCH] Include is needed for some gcc build environments --- include/fc/interprocess/file_mutex.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/fc/interprocess/file_mutex.hpp b/include/fc/interprocess/file_mutex.hpp index 0379074..6041824 100644 --- a/include/fc/interprocess/file_mutex.hpp +++ b/include/fc/interprocess/file_mutex.hpp @@ -2,7 +2,9 @@ #include #include -namespace fc { +#include + +namespace fc { class microseconds; class time_point; class path; @@ -11,8 +13,8 @@ namespace fc { namespace detail { class file_mutex_impl; } /** - * The purpose of this class is to support synchronization of - * processes, threads, and coop-threads. + * The purpose of this class is to support synchronization of + * processes, threads, and coop-threads. * * Before grabbing the lock for a thread or coop, a file_mutex will first * grab a process-level lock. After grabbing the process level lock, it will