Skip to content

Commit

Permalink
ci: maintenance 2023-10-27.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 27, 2023
1 parent 41f0f1f commit c1434c0
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CommonLibSF/include/RE/B/BSSystemFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace RE
kCurrent = 1,
kEnd = 2
};

BSSystemFile();

~BSSystemFile();
Expand Down
6 changes: 3 additions & 3 deletions CommonLibSF/include/RE/I/idLogging.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ namespace RE
{
SF_RTTI_VTABLE(idLogging__ILogger);

~ILogger() = default; // 00
~ILogger() = default; // 00

virtual bool ShouldLog(Severity severity) = 0; // 01
virtual void Log(const char* a_fileName, int a_line_number, Severity severity, const char* msg) = 0; // 02

void Printf(const char* a_fileName, int a_line_number, Severity severity, const char* a_fmt, ...)
void Printf(const char* a_fileName, int a_line_number, Severity severity, const char* a_fmt, ...)
{
va_list args;
va_start(args, a_fmt);
Expand All @@ -45,7 +45,7 @@ namespace RE
~NetSocketLogger() = default; // 00

// override idLogging::ILogger
bool ShouldLog([[maybe_unused]] idLogging::Severity severity) override { return false; } // 01
bool ShouldLog([[maybe_unused]] idLogging::Severity severity) override { return false; } // 01

void Log(const char* a_fileName, int a_line_number, idLogging::Severity severity, const char* msg) override // 02
{
Expand Down
2 changes: 1 addition & 1 deletion CommonLibSF/include/RE/I/idTCP.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace RE
{
SF_RTTI_VTABLE(idTCP);

virtual ~idTCP(); // 00
virtual ~idTCP(); // 00

bool Listen(std::uint16_t port, bool blocking); // 'blocking' is ignored
bool Accept(const idTCP& listener);
Expand Down
2 changes: 1 addition & 1 deletion CommonLibSF/src/RE/I/idTCP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ namespace RE

if (s->sa_family == AFType::AF_INET) {
const auto sin = reinterpret_cast<sockaddr_in*>(s);
auto ip = sin->sin_addr.s_addr;
auto ip = sin->sin_addr.s_addr;
*reinterpret_cast<unsigned int*>(&a->ip) = ip;
a->port = WinAPI::htons(sin->sin_port);
ip = WinAPI::ntohl(ip);
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-27.1",
"version-date": "2023-10-27.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-27.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-27.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 c1434c0

Please sign in to comment.