Skip to content

Commit

Permalink
Reformat files
Browse files Browse the repository at this point in the history
  • Loading branch information
JCWasmx86 committed Feb 1, 2025
1 parent 977738c commit 50a64ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/libanalyze/options/optionstate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ OptionState::OptionState() {
"default_library", std::vector<std::string>{"shared", "static", "both"},
"Default library type (Default: `shared`)", false));
this->options.push_back(std::make_shared<ComboOption>(
"default_both_libraries", std::vector<std::string>{"shared", "static", "both"},
"default_both_libraries",
std::vector<std::string>{"shared", "static", "both"},
"Default library type for both_libraries (Default: `shared`)", false));
this->options.push_back(
std::make_shared<IntOption>("install_umask",
Expand Down
4 changes: 2 additions & 2 deletions src/liblangserver/langserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ void printGreeting() {
}

std::filesystem::path writeMuonConfigFile(FormattingOptions options) {
const auto &name =
std::format("muon-2-fmt-{}-{}-{}", options.insertSpaces, options.tabSize, options.insertFinalNewline);
const auto &name = std::format("muon-2-fmt-{}-{}-{}", options.insertSpaces,
options.tabSize, options.insertFinalNewline);
const auto &fullPath = cacheDir() / name;
if (std::filesystem::exists(fullPath)) {
return fullPath;
Expand Down

0 comments on commit 50a64ed

Please sign in to comment.