Skip to content

Commit da7d588

Browse files
Fix clang-format errors introduced in commit f98cca3
1 parent d3a778b commit da7d588

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/xinterpreter.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,12 @@ __get_cxx_version ()
382382
std::istringstream stream(non_standard_paths);
383383
std::string path;
384384
while (std::getline(stream, path, path_separator))
385-
if (!path.empty())
386-
Cpp::AddIncludePath(path.c_str());
385+
+ {
386+
if (!path.empty())
387+
+ {
388+
Cpp::AddIncludePath(path.c_str());
389+
+ }
390+
+ }
387391
}
388392

389393
void interpreter::init_preamble()

0 commit comments

Comments
 (0)