We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545f0fb commit 111f322Copy full SHA for 111f322
CodeFormat/src/FormatContext.cpp
@@ -5,6 +5,10 @@
5
#include <fstream>
6
#include <iostream>
7
8
+FormatContext::FormatContext() {
9
+ _diagnosticStyle.name_style_check = false;
10
+}
11
+
12
void FormatContext::SetWorkMode(WorkMode mode) {
13
_workMode = mode;
14
}
CodeFormat/src/FormatContext.h
@@ -11,6 +11,8 @@
class FormatContext {
public:
+ FormatContext();
15
16
void SetWorkMode(WorkMode mode);
17
18
void SetWorkspacePath(std::string_view workspace);
0 commit comments