From ccb2f2ce6aa052d6467895d1e3f025fc9e0f8cdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 3 Jun 2017 15:30:36 +0200 Subject: [PATCH] astyle formatting [ci skip] --- lib/path.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/path.cpp b/lib/path.cpp index dbf588705..9ab8c4a02 100644 --- a/lib/path.cpp +++ b/lib/path.cpp @@ -252,15 +252,15 @@ bool Path::isCPP(const std::string &path) { const std::string extension = getFilenameExtensionInLowerCase(path); return extension == ".cpp" || - extension == ".cxx" || - extension == ".cc" || - extension == ".c++" || - extension == ".hpp" || - extension == ".hxx" || - extension == ".hh" || - extension == ".tpp" || - extension == ".txx" || - getFilenameExtension(path) == ".C"; // In unix, ".C" is considered C++ file + extension == ".cxx" || + extension == ".cc" || + extension == ".c++" || + extension == ".hpp" || + extension == ".hxx" || + extension == ".hh" || + extension == ".tpp" || + extension == ".txx" || + getFilenameExtension(path) == ".C"; // In unix, ".C" is considered C++ file } bool Path::acceptFile(const std::string &path, const std::set &extra)