summaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h b/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h
index cba2e7c4..e0cdcc64 100644
--- a/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h
+++ b/public/frameworks/LaunchHelpers.fwrk/headers/Foundation.h
@@ -18,14 +18,14 @@ inline constexpr auto kMaxArgs = 256;
/// @brief Launch information structure.
/// @note This structure is read-only. Modyfing its members wo't have any effect.
struct LHLaunchInfo final {
- CF::CFString fExecutablePath{kMaxPath};
- CF::CFString fWorkingDirectory{kMaxPath};
- CF::CFRef<CF::CFString> fArguments[kMaxArgs];
- CF::CFString fEnvironment{kMaxPath};
- CF::CFInteger64 fUID{0};
- CF::CFInteger64 fGID{0};
-
- LHLaunchInfo() = default;
+ CF::CFString fExecutablePath{kMaxPath};
+ CF::CFString fWorkingDirectory{kMaxPath};
+ CF::CFRef<CF::CFString> fArguments[kMaxArgs];
+ CF::CFString fEnvironment{kMaxPath};
+ CF::CFInteger64 fUID{0};
+ CF::CFInteger64 fGID{0};
+
+ LHLaunchInfo() = default;
~LHLaunchInfo() = default;
LIBSYS_COPY_DELETE(LHLaunchInfo)