From d39f7c5c6f4ca8d4d23a20f9e1d11d4167a70bbe Mon Sep 17 00:00:00 2001 From: Jonas Suhr Christensen Date: Sun, 18 May 2014 17:33:00 +0200 Subject: Added missing ; under win32. --- plugingui/directory.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugingui/directory.cc b/plugingui/directory.cc index d481d24..61b1441 100644 --- a/plugingui/directory.cc +++ b/plugingui/directory.cc @@ -320,7 +320,7 @@ bool Directory::isHidden(std::string path) { // TODO: Handle hidden and system files in windows #ifdef WIN32 - return false + return false; #else unsigned pos = path.find_last_of("/\\"); std::string entry = path.substr(pos+1); -- cgit v1.2.3