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 ### Definitions
target_compile_definitions(ccls PRIVATE target_compile_definitions(ccls PRIVATE
LOGURU_WITH_STREAMS=1
LOGURU_FILENAME_WIDTH=18
LOGURU_THREADNAME_WIDTH=13
DEFAULT_RESOURCE_DIRECTORY="${Clang_RESOURCE_DIR}") DEFAULT_RESOURCE_DIRECTORY="${Clang_RESOURCE_DIR}")
### Includes ### Includes
target_include_directories(ccls PRIVATE target_include_directories(ccls PRIVATE src)
src target_include_directories(ccls SYSTEM PRIVATE
third_party third_party
third_party/rapidjson/include) third_party/rapidjson/include)

View File

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