Commit Graph

263 Commits

Author SHA1 Message Date
Deukhoofd 47272b0206
Document StringViewLiteral equality members 2022-03-23 14:20:20 +01:00
Deukhoofd a618f2b98b
Style fixes 2022-03-23 14:16:18 +01:00
Deukhoofd eda1a29427
Fixes missing documentation 2022-03-23 14:15:48 +01:00
Deukhoofd 3b19f8b268
Turns out vector::data() can return null 2022-03-23 13:04:04 +01:00
Deukhoofd 9eca4fa9bb
Expand on the use of defines and non_null/nullable 2022-03-23 12:56:12 +01:00
Deukhoofd 0031804fe8
Implements Defines with common defines, initial work on nullability 2022-03-23 11:13:42 +01:00
Deukhoofd ac7d8e58b4
Fixes non clang builds 2022-03-23 11:02:13 +01:00
Deukhoofd afd51a7924
More sanitizers, fixes several errors caught by these. 2022-03-23 10:53:02 +01:00
Deukhoofd ca9c885657
Fixes Dictionary error. 2022-03-20 12:21:04 +01:00
Deukhoofd 84dd686b61
Revers change to Dictionary using pointer. 2022-03-20 12:17:11 +01:00
Deukhoofd f4a9059150
Fixes style 2022-03-20 12:02:25 +01:00
Deukhoofd 8667c8f8ff
Adds documentation for Ensure macros 2022-03-20 11:59:18 +01:00
Deukhoofd e8f4ab27b5
Fixes destructor missing. 2022-03-20 11:55:56 +01:00
Deukhoofd 94ca0327ef
Adds copy and assignment operators for Dictionary 2022-03-20 11:39:00 +01:00
Deukhoofd 74e3cb36a7
Make Dictionary use pointer to map 2022-03-20 11:34:24 +01:00
Deukhoofd 97babe79e1
Adds new Ensure helpers for clearer error messages. 2022-03-20 11:05:44 +01:00
Deukhoofd ba411d011b
Cleanup exception stacktraces, so the compile the same on Windows.
Stacktraces still appear to be empty on Windows, but that's an issue for a later day.
2022-02-26 14:55:28 +01:00
Deukhoofd f5690363da
Moves extern dependencies to CPM 2022-02-05 13:37:47 +01:00
Deukhoofd b239b556dc
Documents Exception::Throw. 2021-11-21 12:35:40 +01:00
Deukhoofd 69714084d6
Style fixes. 2021-11-21 12:34:00 +01:00
Deukhoofd dbe3923cc4
Removes unused function 2021-11-21 12:33:34 +01:00
Deukhoofd 52130fa8a5
Mark Exception::Throw as noreturn, fix windows build. 2021-11-21 12:30:35 +01:00
Deukhoofd 1be055760a
Reworks ensure and throw to not fully depend on macros anymore. 2021-11-21 12:27:46 +01:00
Deukhoofd ea5c824d34
Fixes for Windows. 2021-10-30 13:38:52 +02:00
Deukhoofd b72685ff05
Removes noexcept from UniquePtrList constructor. 2021-10-30 12:59:36 +02:00
Deukhoofd 1280e19fd0
Add reference to <vector> to Enum header. 2021-10-30 12:56:52 +02:00
Deukhoofd 999dc675fa
Remove precompiled header, as it only caused issues. 2021-10-30 12:54:57 +02:00
Deukhoofd 78d4513a4d
Removes Conan build step, adds documentation to dictionary. 2021-09-26 10:47:19 +02:00
Deukhoofd dbf6fbc1db
Adds documentation, style fixes. 2021-09-25 17:59:06 +02:00
Deukhoofd 73b2270fca
Further fixes for new convenience functions. 2021-09-25 14:34:34 +02:00
Deukhoofd b7c9944784
Fixes invalid declaration 2021-09-25 14:30:09 +02:00
Deukhoofd a2b52c5ed5
Adds helper functions to the list types. 2021-09-25 14:21:31 +02:00
Deukhoofd 54c5422cda
Adds helper functions for ScopedPtr 2021-08-29 16:23:04 +02:00
Deukhoofd ec3c8e7701
Handle THROW macro in its own scope. 2021-08-22 11:35:08 +02:00
Deukhoofd a0488d7078
Fixes Windows issues 2021-06-20 12:05:30 +02:00
Deukhoofd c693c2635e
Include <optional> in precompiled. 2021-06-19 12:46:40 +02:00
Deukhoofd fe523f6c0d
Show actual length when logging out of bounds errors on lists. 2021-04-17 14:49:29 +02:00
Deukhoofd 6ef9a6d67b
When calling Clear on UniquePtrList, also clear the vector. 2021-04-14 19:27:56 +02:00
Deukhoofd b3ab6dab59
TakeOwnership shouldn't be const. 2021-03-27 12:23:31 +01:00
Deukhoofd 5274ba735c
Further fixes for optional scoped ptr. 2021-03-27 12:10:33 +01:00
Deukhoofd c805b4eee8
Fixes for OptionalScopedPtr. 2021-03-27 12:03:00 +01:00
Deukhoofd 29ac434679
Adds implicit cast to raw pointer to ScopedPtr. 2021-03-27 11:08:09 +01:00
Deukhoofd ce1268b1de
Adds OptionalScopedPtr, made ScopedPtr non nullable, fixes some APIs on the optional pointer variants. 2021-03-27 11:03:41 +01:00
Deukhoofd 47ee3a0295
When we were doing STATICC we were linking libdw dynamically, still requiring many dependencies. THis switches to libbfd, which should massively reduce the number of required libraries. 2021-03-26 13:37:01 +01:00
Deukhoofd 12f643a80e
Style fixes. 2021-03-07 10:15:34 +01:00
Deukhoofd c1917c6f77
Adds misc macro NO_COPY_OR_MOVE, which allows you to delete copy and move constructors and assignment operators. 2021-03-07 09:54:55 +01:00
Deukhoofd 95266f71ba
Lots of cleanups to get stacks properly working in all cases. 2020-12-23 12:04:20 +01:00
Deukhoofd 0e49c58647
Delete comparison with nullptr for non-null pointers. 2020-12-13 11:51:47 +01:00
Deukhoofd 90bb8d54b6
Rename Assert.hpp --> Ensure.hpp, style fixes. 2020-12-13 11:45:00 +01:00
Deukhoofd 4e854516c1
Rename Assert macro to Ensure, clean up exception to be in line with THROW. 2020-12-13 11:41:41 +01:00