- 01 Oct, 2019 2 commits
-
-
-
Jack Andersen authored
-
- 14 Sep, 2019 1 commit
-
-
Phillip Stephens authored
-
- 11 Sep, 2019 15 commits
-
-
Phillip Stephens authored
AudioGroupPool: Use std::array where applicable
-
Phillip Stephens authored
VolumeTable: Remove unnecessary Common include
-
Phillip Stephens authored
Studio: Make _cyclicCheck a const member function
-
Phillip Stephens authored
Sequencer: Minor cleanup
-
Phillip Stephens authored
CMakeLists: Add MSVC standards conformance flags
-
Lioncash authored
Makes the array types strongly-typed and also allows for size querying.
-
Lioncash authored
Applies flags to make MSVC's compiler be more standards compliant.
-
Lioncash authored
Makes the arrays strongly typed.
-
Lioncash authored
We can just include <algorithm> directly to eliminate an indirect include.
-
Lioncash authored
Avoids an unnecessary atomic reference count increment and decrement
-
Lioncash authored
This doesn't actually modify the internal state of the studio instance, so we can mark it as a const member function.
-
Lioncash authored
Avoids an unnecessary atomic reference count increment and decrement
-
Lioncash authored
-
Lioncash authored
Provides a deterministic initial state for the default constructor case.
-
Lioncash authored
This is the only array in the header that isn't using std::array.
-
- 10 Sep, 2019 1 commit
-
-
Lioncash authored
Many of them are just representative of the sizes of an array, so we can just query the array instead.
-
- 09 Sep, 2019 1 commit
-
-
Phillip Stephens authored
General: Be explicit about athena's Endian/SeekOrigin type
-
- 08 Sep, 2019 5 commits
-
-
Lioncash authored
Allows this code to still compile if the enum is ever changed into an enum class.
-
Lioncash authored
Allows the code to still compile if the enum is turned into an enum class.
-
Phillip Stephens authored
Emitter: Use std::array where applicable
-
Phillip Stephens authored
General: Make operator bool() instances explicit
-
Lioncash authored
Makes the data more strongly-typed and prevents implicit array->pointer decay
-
- 07 Sep, 2019 3 commits
-
-
Lioncash authored
Prevents error-prone implicit conversions to bool.
-
Phillip Stephens authored
General: Amend clamp parameter order
-
Lioncash authored
Batch replace on switching to standardized variants assumed common ordering, which evidently wasn't the case
-
- 30 Aug, 2019 2 commits
-
-
Phillip Stephens authored
ADSREditor: Use std::array for m_percentTexts
-
Lioncash authored
Same behavior, but allows for stronger typing and dehardcoding of sizes.
-
- 29 Aug, 2019 4 commits
-
-
Phillip Stephens authored
Editor: Amend includes of ProjectModel.hpp
-
Phillip Stephens authored
StatusBarWidget: Use std::array where applicable
-
Phillip Stephens authored
StudioSetupWidget: Use std::array where applicable
-
Phillip Stephens authored
Editor/KeyboardWidget: Make use of std::array where applicable
-
- 28 Aug, 2019 6 commits
-
-
Lioncash authored
Nothing in the header file requires the complete definition, so we can use a forward declaration and move the type into the cpp file.
-
Lioncash authored
Makes the type of the array strongly-typed.
-
Lioncash authored
A fairly basic replacement to make the type of the array strongly typed.
-
Lioncash authored
Makes the types of the lookup tables and widget arrays strongly typed. This also makes it a little more straightforward to dehardcode some magic values related to the array sizes.
-
Phillip Stephens authored
-