File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -27,32 +27,32 @@ namespace Exchange {
27
27
#ifndef RUNTIME_CONFIG
28
28
struct RuntimeConfig
29
29
{
30
- bool dial;
31
- bool wanLanAccess;
32
- bool thunder;
33
- int32_t systemMemoryLimit;
34
- int32_t gpuMemoryLimit;
35
- std::string envVariables;
36
- uint32_t userId;
37
- uint32_t groupId;
38
- uint32_t dataImageSize;
39
-
40
- bool resourceManagerClientEnabled;
30
+ bool dial{ false } ;
31
+ bool wanLanAccess{ false } ;
32
+ bool thunder{ false } ;
33
+ int32_t systemMemoryLimit{ 0 } ;
34
+ int32_t gpuMemoryLimit{ 0 } ;
35
+ std::string envVariables{} ;
36
+ uint32_t userId{ 0 } ;
37
+ uint32_t groupId{ 0 } ;
38
+ uint32_t dataImageSize{ 0 } ;
39
+
40
+ bool resourceManagerClientEnabled{ false } ;
41
41
std::string dialId;
42
42
std::string command;
43
43
std::string appType;
44
44
std::string appPath;
45
45
std::string runtimePath;
46
46
47
47
std::string logFilePath;
48
- uint32_t logFileMaxSize;
48
+ uint32_t logFileMaxSize{ 0 } ;
49
49
std::string logLevels; // json array of strings
50
- bool mapi;
50
+ bool mapi { false } ;
51
51
std::string fkpsFiles; // json array of strings
52
52
53
53
std::string fireboltVersion;
54
- bool enableDebugger;
55
- string unpackedPath;
54
+ bool enableDebugger{ false } ;
55
+ std:: string unpackedPath;
56
56
};
57
57
#define RUNTIME_CONFIG
58
58
#endif
You can’t perform that action at this time.
0 commit comments