From 74c5f5fe3ee13fac40d0b7af7b3b9bd7e152ee64 Mon Sep 17 00:00:00 2001 From: Beman Date: Thu, 8 Oct 2015 07:04:13 -0400 Subject: [PATCH] Fix a forward declaration that was missed in a prior pull request. This clears a GCC warning. --- src/operations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operations.cpp b/src/operations.cpp index 8eb01d3..5ff511d 100644 --- a/src/operations.cpp +++ b/src/operations.cpp @@ -266,7 +266,7 @@ namespace bool error(err_t error_num, error_code* ec, const char* message); bool error(err_t error_num, const path& p, error_code* ec, const char* message); bool error(err_t error_num, const path& p1, const path& p2, error_code* ec, - const string& message); + const char* message); const error_code ok;