mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-04 16:02:15 +00:00
NFCI, Constexpr-ed constant string
This commit is contained in:
parent
f21fd7e5a2
commit
8d38fb9841
@ -259,10 +259,10 @@ findDbForPathEnding(const std::string &path,
|
|||||||
|
|
||||||
bool runIndexTests(const std::string &filter_path, bool enable_update) {
|
bool runIndexTests(const std::string &filter_path, bool enable_update) {
|
||||||
gTestOutputMode = true;
|
gTestOutputMode = true;
|
||||||
std::string version = LLVM_VERSION_STRING;
|
const std::string version = LLVM_VERSION_STRING;
|
||||||
|
|
||||||
// Index tests change based on the version of clang used.
|
// Index tests change based on the version of clang used.
|
||||||
static const char kRequiredClangVersion[] = "6.0.0";
|
static constexpr char kRequiredClangVersion[] = "6.0.0";
|
||||||
if (version != kRequiredClangVersion &&
|
if (version != kRequiredClangVersion &&
|
||||||
version.find("svn") == std::string::npos) {
|
version.find("svn") == std::string::npos) {
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
|
Loading…
Reference in New Issue
Block a user