@@ -122,13 +122,13 @@ namespace F4SE
122122 }
123123
124124 public:
125- [[nodiscard]] REL::Version EditorVersion () const noexcept { return MakeVersion (GetProxy ().editorVersion ); }
126- [[nodiscard]] REL::Version F4SEVersion () const noexcept { return MakeVersion (GetProxy ().f4seVersion ); }
127- [[nodiscard]] PluginHandle GetPluginHandle () const { return GetProxy ().GetPluginHandle (); }
128- [[nodiscard]] std::uint32_t GetReleaseIndex () const { return GetProxy ().GetReleaseIndex (); }
125+ [[nodiscard]] REL::Version EditorVersion () const noexcept { return MakeVersion (GetProxy ().editorVersion ); }
126+ [[nodiscard]] REL::Version F4SEVersion () const noexcept { return MakeVersion (GetProxy ().f4seVersion ); }
127+ [[nodiscard]] PluginHandle GetPluginHandle () const { return GetProxy ().GetPluginHandle (); }
128+ [[nodiscard]] std::uint32_t GetReleaseIndex () const { return GetProxy ().GetReleaseIndex (); }
129129 [[nodiscard]] std::string_view GetSaveFolderName () const { return GetProxy ().GetSaveFolderName (); }
130- [[nodiscard]] bool IsEditor () const noexcept { return GetProxy ().isEditor != 0 ; }
131- [[nodiscard]] REL::Version RuntimeVersion () const noexcept { return MakeVersion (GetProxy ().runtimeVersion ); }
130+ [[nodiscard]] bool IsEditor () const noexcept { return GetProxy ().isEditor != 0 ; }
131+ [[nodiscard]] REL::Version RuntimeVersion () const noexcept { return MakeVersion (GetProxy ().runtimeVersion ); }
132132 };
133133
134134 class LoadInterface :
@@ -181,10 +181,10 @@ namespace F4SE
181181
182182 struct Message
183183 {
184- const char * sender;
184+ const char * sender;
185185 std::uint32_t type;
186186 std::uint32_t dataLen;
187- void * data;
187+ void * data;
188188 };
189189
190190 using EventCallback = void F4SEAPI (Message* a_msg);
@@ -236,7 +236,7 @@ namespace F4SE
236236 kVersion = 1 ,
237237 };
238238
239- using EventCallback = void F4SEAPI (const SerializationInterface* a_intfc);
239+ using EventCallback = void F4SEAPI (const SerializationInterface* a_intfc);
240240 using FormDeleteCallback = void F4SEAPI (std::uint64_t a_handle);
241241
242242 [[nodiscard]] std::uint32_t Version () const noexcept { return GetProxy ().version ; }
@@ -398,9 +398,9 @@ namespace F4SE
398398 kVersion = 1
399399 };
400400
401- [[nodiscard]] std::uint32_t Version () const noexcept { return GetProxy ().interfaceVersion ; }
402- [[nodiscard]] DelayFunctorManager& GetDelayFunctorManager () const { return GetProxy ().GetDelayFunctorManager (); }
403- [[nodiscard]] ObjectRegistry& GetObjectRegistry () const { return GetProxy ().GetObjectRegistry (); }
401+ [[nodiscard]] std::uint32_t Version () const noexcept { return GetProxy ().interfaceVersion ; }
402+ [[nodiscard]] DelayFunctorManager& GetDelayFunctorManager () const { return GetProxy ().GetDelayFunctorManager (); }
403+ [[nodiscard]] ObjectRegistry& GetObjectRegistry () const { return GetProxy ().GetObjectRegistry (); }
404404 [[nodiscard]] PersistentObjectStorage& GetPersistentObjectStorage () const { return GetProxy ().GetPersistentObjectStorage (); }
405405 };
406406
@@ -419,8 +419,8 @@ namespace F4SE
419419 };
420420
421421 [[nodiscard]] std::uint32_t Version () const noexcept { return GetProxy ().interfaceVersion ; }
422- [[nodiscard]] void * AllocateFromBranchPool (std::size_t a_size) const ;
423- [[nodiscard]] void * AllocateFromLocalPool (std::size_t a_size) const ;
422+ [[nodiscard]] void * AllocateFromBranchPool (std::size_t a_size) const ;
423+ [[nodiscard]] void * AllocateFromLocalPool (std::size_t a_size) const ;
424424 };
425425
426426 struct PluginInfo
@@ -431,7 +431,7 @@ namespace F4SE
431431 };
432432
433433 std::uint32_t infoVersion;
434- const char * name;
434+ const char * name;
435435 std::uint32_t version;
436436 };
437437
@@ -478,16 +478,16 @@ namespace F4SE
478478 [[nodiscard]] static const PluginVersionData* GetSingleton () noexcept ;
479479
480480 const std::uint32_t dataVersion{ kVersion };
481- std::uint32_t pluginVersion = 0 ;
482- char pluginName[256 ] = {};
483- char author[256 ] = {};
484- std::uint32_t addressIndependence;
485- std::uint32_t structureIndependence;
486- std::uint32_t compatibleVersions[16 ] = {};
487- std::uint32_t xseMinimum = 0 ;
481+ std::uint32_t pluginVersion = 0 ;
482+ char pluginName[256 ] = {};
483+ char author[256 ] = {};
484+ std::uint32_t addressIndependence;
485+ std::uint32_t structureIndependence;
486+ std::uint32_t compatibleVersions[16 ] = {};
487+ std::uint32_t xseMinimum = 0 ;
488488 const std::uint32_t reservedNonBreaking = 0 ;
489489 const std::uint32_t reservedBreaking = 0 ;
490- const std::uint8_t reserved[512 ] = {};
490+ const std::uint8_t reserved[512 ] = {};
491491
492492 private:
493493 static constexpr void SetCharBuffer (std::string_view a_src, std::span<char > a_dst) noexcept
0 commit comments