[PATCH] D39461: [scudo] Implement stricter separation of C vs C++
Aleksey Shlyapnikov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 31 10:56:50 PDT 2017
alekseyshl accepted this revision.
alekseyshl added inline comments.
This revision is now accepted and ready to land.
================
Comment at: test/scudo/lit.cfg:31
"-Wl,--gc-sections"])
+cxx_flags = (config.cxx_mode_flags + c_flags + ["-std=c++11"])
----------------
Super nit :)
cxx_flags = (c_flags + config.cxx_mode_flags + ["-std=c++11"])
https://reviews.llvm.org/D39461
More information about the llvm-commits
mailing list