diff --git a/gui/erroritem.h b/gui/erroritem.h index 6053aea1a..2048e2940 100644 --- a/gui/erroritem.h +++ b/gui/erroritem.h @@ -30,7 +30,7 @@ class ErrorLine; /** * @brief A class containing error data for one error. -* +* * The paths are stored with internal ("/") separators. Only when we show the * path or copy if for user (to clipboard) we convert to native separators. * Full path is stored instead of relative path for flexibility. It is easy diff --git a/lib/filelister_win32.cpp b/lib/filelister_win32.cpp index a9a8f895d..565bd579b 100644 --- a/lib/filelister_win32.cpp +++ b/lib/filelister_win32.cpp @@ -88,7 +88,7 @@ static BOOL MyIsDirectory(std::string path) return (GetFileAttributes(path.c_str()) & FILE_ATTRIBUTE_DIRECTORY); #else // See http://msdn.microsoft.com/en-us/library/bb773621(VS.85).aspx - return PathIsDirectory(path.c_str()); +return PathIsDirectory(path.c_str()); #endif } diff --git a/lib/preprocessor.cpp b/lib/preprocessor.cpp index 43d026b16..30504f218 100644 --- a/lib/preprocessor.cpp +++ b/lib/preprocessor.cpp @@ -1606,7 +1606,7 @@ void Preprocessor::handleIncludes(std::string &code, const std::string &filePath #endif { std::string f = filePath; - + // Determine line number of include unsigned int linenr = 0; unsigned int level = 0;