Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit 50a64ed

Browse files
committed
Reformat files
1 parent 977738c commit 50a64ed

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/libanalyze/options/optionstate.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ OptionState::OptionState() {
212212
"default_library", std::vector<std::string>{"shared", "static", "both"},
213213
"Default library type (Default: `shared`)", false));
214214
this->options.push_back(std::make_shared<ComboOption>(
215-
"default_both_libraries", std::vector<std::string>{"shared", "static", "both"},
215+
"default_both_libraries",
216+
std::vector<std::string>{"shared", "static", "both"},
216217
"Default library type for both_libraries (Default: `shared`)", false));
217218
this->options.push_back(
218219
std::make_shared<IntOption>("install_umask",

src/liblangserver/langserver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ void printGreeting() {
101101
}
102102

103103
std::filesystem::path writeMuonConfigFile(FormattingOptions options) {
104-
const auto &name =
105-
std::format("muon-2-fmt-{}-{}-{}", options.insertSpaces, options.tabSize, options.insertFinalNewline);
104+
const auto &name = std::format("muon-2-fmt-{}-{}-{}", options.insertSpaces,
105+
options.tabSize, options.insertFinalNewline);
106106
const auto &fullPath = cacheDir() / name;
107107
if (std::filesystem::exists(fullPath)) {
108108
return fullPath;

0 commit comments

Comments
 (0)