summaryrefslogtreecommitdiff
path: root/src/DynamicLink.cpp
diff options
context:
space:
mode:
authorElijah Thomas <42302100+elijah-thomas774@users.noreply.github.com>2024-10-16 15:36:02 -0400
committerGitHub <noreply@github.com>2024-10-16 15:36:02 -0400
commit26af4db82da23364961ebb440efba88846240731 (patch)
tree9cfe6a427cfe59c13c64928ccef6ba3c5ccfec21 /src/DynamicLink.cpp
parent4543ec129ec02649b24ae0e20d8325a5f066c9b1 (diff)
update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
Diffstat (limited to 'src/DynamicLink.cpp')
-rw-r--r--src/DynamicLink.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/DynamicLink.cpp b/src/DynamicLink.cpp
index aacc4cc2..a845ba36 100644
--- a/src/DynamicLink.cpp
+++ b/src/DynamicLink.cpp
@@ -1,4 +1,4 @@
-#include <DynamicLink.h>
+#include "DynamicLink.h"
DynamicModuleControlBase *DynamicModuleControlBase::mFirst;
DynamicModuleControlBase *DynamicModuleControlBase::mLast;
@@ -311,10 +311,10 @@ int DynamicModuleControl::getModuleSize() const {
const char *DynamicModuleControl::getModuleTypeString() const {
static const char *REL_LOAD_TYPES[4] = {
- "????",
- "MEM",
- "ARAM",
- "DVD",
+ "????",
+ "MEM",
+ "ARAM",
+ "DVD",
};
return REL_LOAD_TYPES[mResourceType & 3];
}