Skip to content

Commit

Permalink
ci: maintenance 2023-10-24.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 24, 2023
1 parent 32dfc33 commit 4a5ee28
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CommonLibSF/include/RE/M/msvc.h
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ namespace RE::msvc
std::same_as<E, deleter_type> &&
(std::is_reference_v<deleter_type> ?
std::is_nothrow_constructible_v<deleter_type, const E&> :
std::is_nothrow_constructible_v<deleter_type, E &&>))
std::is_nothrow_constructible_v<deleter_type, E&&>))
:
super(std::move(a_rhs))
{}
Expand Down Expand Up @@ -600,7 +600,7 @@ namespace RE::msvc
std::convertible_to<typename unique_ptr<U, E>::element_type (*)[], element_type (*)[]> &&
(std::is_reference_v<deleter_type> ?
std::same_as<E, deleter_type> && std::is_nothrow_constructible_v<deleter_type, const E&> :
std::convertible_to<E, deleter_type> && std::is_nothrow_constructible_v<deleter_type, E &&>)))
std::convertible_to<E, deleter_type> && std::is_nothrow_constructible_v<deleter_type, E&&>)))
:
super(std::move(a_rhs))
{}
Expand Down Expand Up @@ -637,7 +637,7 @@ namespace RE::msvc
std::same_as<pointer, element_type*> &&
std::same_as<typename unique_ptr<U, E>::pointer, typename unique_ptr<U, E>::element_type*> &&
std::convertible_to<typename unique_ptr<U, E>::element_type (*)[], element_type (*)[]> &&
std::is_assignable_v<deleter_type&, E &&>))
std::is_assignable_v<deleter_type&, E&&>))
{
if (this != std::addressof(a_rhs)) {
reset(a_rhs.release());
Expand Down Expand Up @@ -797,7 +797,7 @@ namespace RE::msvc
[[nodiscard]] const char* name() const noexcept
{
using func_t = const char* (*)(const type_info*, __type_info_node*) noexcept;
REL::Relocation<func_t*> func{ ID::msvc::type_info::name };
REL::Relocation<func_t*> func{ ID::msvc::type_info::name };
return (*func)(this, std::addressof(get_root_node()));
}

Expand All @@ -809,7 +809,7 @@ namespace RE::msvc
private:
[[nodiscard]] int compare(const type_info& a_rhs) const
{
using func_t = int (*)(const type_info*, const type_info*) noexcept;
using func_t = int (*)(const type_info*, const type_info*) noexcept;
REL::Relocation<func_t*> func{ ID::msvc::type_info::compare };
return (*func)(this, &a_rhs);
}
Expand Down
1 change: 1 addition & 0 deletions CommonLibSF/include/RE/Starfield.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
#include "RE/M/MemoryManager.h"
#include "RE/M/MenuOpenCloseEvent.h"
#include "RE/M/Misc.h"
#include "RE/M/msvc.h"
#include "RE/N/NativeFunction.h"
#include "RE/N/NativeFunctionBase.h"
#include "RE/N/NiPoint3.h"
Expand Down
2 changes: 1 addition & 1 deletion CommonLibSF/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "commonlibsf",
"version-date": "2023-10-24.1",
"version-date": "2023-10-24.2",
"port-version": 0,
"description": "A collaborative reverse-engineered library for Starfield.",
"homepage": "https://github.com/Starfield-Reverse-Engineering/CommonLibSF",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![C++23](https://img.shields.io/static/v1?label=standard&message=c%2B%2B23&color=blue&logo=c%2B%2B&&logoColor=red&style=flat)](https://en.cppreference.com/w/cpp/compiler_support)
![Platform](https://img.shields.io/static/v1?label=platform&message=windows&color=dimgray&style=flat&logo=windows)
[![Game version](https://img.shields.io/badge/game%20version-1.7.36-orange)](#Developing-with-CommonLibSF)
[![VCPKG_VER](https://img.shields.io/static/v1?label=vcpkg%20registry&message=2023-10-24.1&color=green&style=flat)](https://github.com/Starfield-Reverse-Engineering/Starfield-RE-vcpkg)
[![VCPKG_VER](https://img.shields.io/static/v1?label=vcpkg%20registry&message=2023-10-24.2&color=green&style=flat)](https://github.com/Starfield-Reverse-Engineering/Starfield-RE-vcpkg)
[![Main CI](https://img.shields.io/github/actions/workflow/status/Starfield-Reverse-Engineering/CommonLibSF/main_ci.yml)](https://github.com/Starfield-Reverse-Engineering/CommonLibSF/actions/workflows/main_ci.yml)

## Build Dependencies
Expand Down

0 comments on commit 4a5ee28

Please sign in to comment.