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 d87b945 commit c72ab4fCopy full SHA for c72ab4f
src/Parsers/GINIParser.cpp
@@ -7,20 +7,9 @@
7
using namespace std;
8
9
#pragma region CTORs and DTORs
10
- GINIParser::GINIParser(const string& filePath) : Path(filePath)
11
- {
12
- Parse();
13
- }
14
-
15
- GINIParser::GINIParser(const char* filePath) : Path(string(filePath))
16
17
18
19
20
- GINIParser::GINIParser(const QString& filePath) : Path(filePath.toStdString())
21
22
23
+ GINIParser::GINIParser(const string& filePath) : Path(filePath) { Parse(); }
+ GINIParser::GINIParser(const char* filePath) : Path(string(filePath)) { Parse(); }
+ GINIParser::GINIParser(const QString& filePath) : Path(filePath.toStdString()) { Parse(); }
24
#pragma endregion
25
26
#pragma region Parsing
0 commit comments