| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
This formats all copyright comments according to SPDX formatting guidelines.
Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
|
| |
|
|
| |
This adds bitwise shift operator overloads (<<, >>, <<=, >>=) in the macro DECLARE_ENUM_FLAG_OPERATORS(type)
|
| | |
|
| |
|
|
| |
This allows us to avoid implicitly including <string> every time common_funcs.h is included.
|
| |
|
|
|
|
| |
These macros all interact with the result code type, so they should
ideally be within this file as well, so all the common_funcs machinery
doesn't need to be pulled in just to use them.
|
| | |
|
| | |
|
| |
|
|
| |
- Useful for scenarios where we do not want to inherit from NonCopyable.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
`network.cpp` has several error paths which either:
- report "Unhandled host socket error=n" and return `SUCCESS`, or
- switch on a few possible errors, log them, and translate them to
Errno; the same switch statement is copied and pasted in multiple
places in the code
Convert these paths to use a helper function `GetAndLogLastError`, which
is roughly the equivalent of one of the switch statements, but:
- handling more cases (both ones that were already in `Errno`, and a few
more I added), and
- using OS functions to convert the error to a string when logging, so
it'll describe the error even if it's not one of the ones in the
switch statement.
- To handle this, refactor the logic in `GetLastErrorMsg` to expose a
new function `NativeErrorToString` which takes the error number
explicitly as an argument. And improve the Windows version a bit.
Also, add a test which exercises two random error paths.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior.
|
| | |
|
| |
|
|
|
| |
Ensures that the full set of bitwise operators are available for types
that make use of this macro.
|
| |
|
|
|
|
| |
Now that clang-format makes [[nodiscard]] attributes format sensibly, we
can apply them to several functions within the common library to allow
the compiler to complain about any misuses of the functions.
|
| | |
|
| |
|
|
|
| |
Makes code that uses the macros consistent by requiring the lines to be
terminated with a semicolon.
|
| |
|
|
|
| |
We can trivially resolve these by casting the characters to unsigned
values and then shifting the bits.
|
| |
|
|
| |
- Zero initialization here is useful for determinism.
|
| | |
|
| |
|
|
| |
- Zero initialization here is useful for determinism.
|
| | |
|
| | |
|
| | |
|
| |\
| |
| | |
common/common_funcs: Remove unused rotation functions
|
| | |
| |
| |
| |
| |
| |
| | |
These are unused and essentially don't provide much benefit either. If
we ever need rotation functions, these can be introduced in a way that
they don't sit in a common_* header and require a bunch of ifdefing to
simply be available
|
| |/
|
|
|
|
|
| |
Android and macOS have supported thread_local for quite a while, but
most importantly is that we don't even really need it. Instead of using
a thread-local buffer, we can just return a non-static buffer as a
std::string, avoiding the need for that quality entirely.
|
| | |
|
| |\
| |
| | |
common_funcs: Remove check for VS versions that we don't even support
|
| | |
| |
| |
| |
| | |
We don't support any VS versions that don't already have snprintf in the
standard library implementation.
|
| |/
|
|
| |
C++17 has non-member size() which we can just call where necessary.
|
| | |
|
| | |
|
| |
|
|
|
|
|
| |
This makes clang-format useful on those.
Also add a bunch of forgotten transitive includes, which otherwise
prevented compilation.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
The gl rasterizer already uses alignas,
so we may as well move everything over.
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
__forceinline is a MSVC extension, which may confuse some people working on the codebase.
Furthermore, the C++ standard dictates that all names which contain adjacent underscores are reserved.
|
| |
|
| |
Visual Studio 2015 defines this in stdio now
|