This commit is contained in:
Chao Shen 2018-07-25 11:25:13 +08:00 committed by Fangrui Song
parent 0dae2c4a39
commit f87ee1323c
2 changed files with 3 additions and 6 deletions

View File

@ -123,15 +123,12 @@ endif()
### Definitions
target_compile_definitions(ccls PRIVATE
LOGURU_WITH_STREAMS=1
LOGURU_FILENAME_WIDTH=18
LOGURU_THREADNAME_WIDTH=13
DEFAULT_RESOURCE_DIRECTORY="${Clang_RESOURCE_DIR}")
### Includes
target_include_directories(ccls PRIVATE
src
target_include_directories(ccls PRIVATE src)
target_include_directories(ccls SYSTEM PRIVATE
third_party
third_party/rapidjson/include)

View File

@ -25,7 +25,7 @@ std::optional<Matcher> Matcher::Create(const std::string& search) {
// std::regex_constants::nosubs
);
return m;
} catch (std::exception e) {
} catch (const std::exception& e) {
Out_ShowLogMessage out;
out.display_type = Out_ShowLogMessage::DisplayType::Show;
out.params.type = lsMessageType::Error;