From 45c0f8d631a76ca7af8452c99ed90f18b432f92a Mon Sep 17 00:00:00 2001 From: jose guzman Date: Thu, 15 Oct 2015 10:54:23 +0200 Subject: [PATCH] remove semicolon --- lib/third_party/Pluma/DLibrary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/third_party/Pluma/DLibrary.cpp b/lib/third_party/Pluma/DLibrary.cpp index 923d825..14516ba 100644 --- a/lib/third_party/Pluma/DLibrary.cpp +++ b/lib/third_party/Pluma/DLibrary.cpp @@ -51,7 +51,7 @@ DLibrary* DLibrary::load(const std::string& path){ throw std::runtime_error( std::string( "Failed to load library \"" ) + path + - std::string( "\"." ); + std::string( "\"." ) ); return NULL; } -- 2.45.1