Skip to content

Commit c29b177

Browse files
committed
Update dependencies
1 parent 078acb6 commit c29b177

11 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
FOMOD_AE_DESCR: 'Select this if you are using Skyrim Anniversary Edition v1.6.1130 or higher (latest update).'
3131
FOMOD_AE_MIN_GAME_VERSION: '1.6.1130.0'
3232
PUBLISH_ARCHIVE_TYPE: '7z'
33-
VCPKG_COMMIT_ID: '41626fd77bf42f29e8f7e43dc1f2f05780588cde'
33+
VCPKG_COMMIT_ID: '53b9816594558d0b78529ecce2bf4a97d0a0729e'

CMakePresets.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"hidden": true,
1212
"cacheVariables": {
1313
"CMAKE_CONFIGURATION_TYPES": "Debug;Release",
14-
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /external:anglebrackets /external:W0 $penv{CXXFLAGS}"
14+
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /external:W0 $penv{CXXFLAGS}",
15+
"CMAKE_CXX_FLAGS_RELEASE": "/O2 /DNDEBUG"
1516
},
1617
"errors": {
1718
"deprecated": true

cmake/ports/clib-util/portfile.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
vcpkg_from_github(
33
OUT_SOURCE_PATH SOURCE_PATH
44
REPO powerof3/CLibUtil
5-
REF a491e2f7919211eac6d32dd2814b7908134ec1b2
6-
SHA512 e6b830a061d7fc99115ee7d28de0165b8c6281006df6d053342e6b5b85606a46a846ebb30f3e4598aa976c25cfe7a9dffd1c4eb72942829d1a4615d81e62cf3c
5+
REF a7a877a0551592cba58f7fc36d94d1a6d1a14db9
6+
SHA512 cfebe14121c41f2400bc85deeb881d631ecf0a9216bca7e963b5c7ef5de46d4048752dae1552915fb9927d25f71d430c6d2f92be195a8130ec15a5457491d473
77
HEAD_REF master
88
)
99

cmake/ports/clib-util/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clib-util",
3-
"version-string": "1.4.0",
3+
"version-string": "1.4.4",
44
"port-version": 1,
55
"description": "",
66
"homepage": "https://github.com/powerof3/CLibUtil"

extern/CommonLibSSE

Submodule CommonLibSSE updated 260 files

extern/CommonLibVR

Submodule CommonLibVR updated 459 files

src/ConditionalData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct ConditionFilters
1717
}
1818

1919
// members
20-
std::string conditionID{}; // path|condition1,condition2
20+
std::string conditionID{}; // path|condition1,condition2
2121
std::vector<FormIDStr> NOT{};
2222
std::vector<FormIDStr> MATCH{};
2323
};

src/Manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace FormSwap
66
{
7-
class Manager : public ISingleton<Manager>
7+
class Manager : public REX::Singleton<Manager>
88
{
99
public:
1010
void LoadFormsOnce();

src/PCH.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include <ranges>
77

88
#include "RE/Skyrim.h"
9+
#include "REX/REX/Singleton.h"
910
#include "SKSE/SKSE.h"
1011

1112
#include <MergeMapperPluginAPI.h>
@@ -20,7 +21,7 @@
2021
#include <CLibUtil/rng.hpp>
2122
#include <CLibUtil/string.hpp>
2223
#include <ClibUtil/simpleINI.hpp>
23-
#include <ClibUtil/singleton.hpp>
24+
2425
#include <ClibUtil/editorID.hpp>
2526

2627
#define DLLEXPORT __declspec(dllexport)
@@ -29,7 +30,6 @@ namespace logger = SKSE::log;
2930
using namespace std::literals;
3031

3132
using namespace clib_util;
32-
using namespace clib_util::singleton;
3333
using SeedRNG = clib_util::RNG;
3434

3535
// for visting variants

src/RNG.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ struct Chance
1717

1818
// members
1919
CHANCE_TYPE chanceType{ CHANCE_TYPE::kRefHash };
20-
float chanceValue{ 100.0f };
20+
float chanceValue{ 100.0f };
2121
std::uint64_t seed{ 0 };
22-
2322
};
2423

2524
struct BOS_RNG
@@ -40,5 +39,5 @@ struct BOS_RNG
4039

4140
// members
4241
CHANCE_TYPE type;
43-
std::uint64_t seed { 0 };
42+
std::uint64_t seed{ 0 };
4443
};

0 commit comments

Comments
 (0)