Browse Source

Fixed comments within system includes, should now get all brief comments if existing doxygen doc. Small commit, took weeks to figure out...

merge-requests/365/head
eidheim 10 years ago
parent
commit
d77aed7ab5
  1. 2
      src/source.cc

2
src/source.cc

@ -1433,7 +1433,7 @@ std::vector<std::string> Source::ClangViewParse::get_compilation_commands() {
arguments.emplace_back("-IC:/msys64/mingw32/lib/clang/"+clang_version+"/include"); arguments.emplace_back("-IC:/msys64/mingw32/lib/clang/"+clang_version+"/include");
arguments.emplace_back("-IC:/msys64/mingw64/lib/clang/"+clang_version+"/include"); arguments.emplace_back("-IC:/msys64/mingw64/lib/clang/"+clang_version+"/include");
} }
arguments.emplace_back("-fretain-comments-from-system-headers");
if(file_path.extension()==".h") //TODO: temporary fix for .h-files (parse as c++) if(file_path.extension()==".h") //TODO: temporary fix for .h-files (parse as c++)
arguments.emplace_back("-xc++"); arguments.emplace_back("-xc++");

Loading…
Cancel
Save