aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/Collision/BoundingIntervalHierarchyWrapper.h1
-rw-r--r--src/common/Collision/DynamicTree.h1
-rw-r--r--src/common/Collision/Management/MMapManager.h1
-rw-r--r--src/common/Collision/Maps/MapTree.h1
-rw-r--r--src/common/Collision/Maps/TileAssembler.cpp1
-rw-r--r--src/common/DataStores/DBCFileLoader.cpp1
-rw-r--r--src/common/Debugging/WheatyExceptionReport.cpp2
-rw-r--r--src/common/Metric/Metric.h1
8 files changed, 0 insertions, 9 deletions
diff --git a/src/common/Collision/BoundingIntervalHierarchyWrapper.h b/src/common/Collision/BoundingIntervalHierarchyWrapper.h
index 90c077d6764..f15e80b9a2e 100644
--- a/src/common/Collision/BoundingIntervalHierarchyWrapper.h
+++ b/src/common/Collision/BoundingIntervalHierarchyWrapper.h
@@ -23,7 +23,6 @@
#include <G3D/Array.h>
#include <G3D/Set.h>
-
template<class T, class BoundsFunc = BoundsTrait<T> >
class BIHWrap
{
diff --git a/src/common/Collision/DynamicTree.h b/src/common/Collision/DynamicTree.h
index a890f828b96..b62044b9544 100644
--- a/src/common/Collision/DynamicTree.h
+++ b/src/common/Collision/DynamicTree.h
@@ -15,7 +15,6 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-
#ifndef _DYNTREE_H
#define _DYNTREE_H
diff --git a/src/common/Collision/Management/MMapManager.h b/src/common/Collision/Management/MMapManager.h
index 5412634df49..bb787604ec0 100644
--- a/src/common/Collision/Management/MMapManager.h
+++ b/src/common/Collision/Management/MMapManager.h
@@ -51,7 +51,6 @@ namespace MMAP
MMapTileSet loadedTileRefs; // maps [map grid coords] to [dtTile]
};
-
typedef std::unordered_map<uint32, MMapData*> MMapDataSet;
// singleton class
diff --git a/src/common/Collision/Maps/MapTree.h b/src/common/Collision/Maps/MapTree.h
index f3d47c53440..bcb24f58709 100644
--- a/src/common/Collision/Maps/MapTree.h
+++ b/src/common/Collision/Maps/MapTree.h
@@ -22,7 +22,6 @@
#include "BoundingIntervalHierarchy.h"
#include <unordered_map>
-
namespace VMAP
{
class ModelInstance;
diff --git a/src/common/Collision/Maps/TileAssembler.cpp b/src/common/Collision/Maps/TileAssembler.cpp
index 7096e1284b1..c8dc2d46620 100644
--- a/src/common/Collision/Maps/TileAssembler.cpp
+++ b/src/common/Collision/Maps/TileAssembler.cpp
@@ -445,7 +445,6 @@ namespace VMAP
READ_OR_RETURN(&mogpflags, sizeof(uint32));
READ_OR_RETURN(&GroupWMOID, sizeof(uint32));
-
Vector3 vec1, vec2;
READ_OR_RETURN(&vec1, sizeof(Vector3));
diff --git a/src/common/DataStores/DBCFileLoader.cpp b/src/common/DataStores/DBCFileLoader.cpp
index 842203278fb..a2ace0eb41b 100644
--- a/src/common/DataStores/DBCFileLoader.cpp
+++ b/src/common/DataStores/DBCFileLoader.cpp
@@ -43,7 +43,6 @@ bool DBCFileLoader::Load(char const* filename, char const* fmt)
return false;
}
-
EndianConvert(header);
if (header != 0x43424457) //'WDBC'
diff --git a/src/common/Debugging/WheatyExceptionReport.cpp b/src/common/Debugging/WheatyExceptionReport.cpp
index 55080cfa051..d0ad45b6762 100644
--- a/src/common/Debugging/WheatyExceptionReport.cpp
+++ b/src/common/Debugging/WheatyExceptionReport.cpp
@@ -56,7 +56,6 @@ bool WheatyExceptionReport::alreadyCrashed;
std::mutex WheatyExceptionReport::alreadyCrashedLock;
WheatyExceptionReport::pRtlGetVersion WheatyExceptionReport::RtlGetVersion;
-
// Declare global instance of class
WheatyExceptionReport g_WheatyExceptionReport;
@@ -1286,7 +1285,6 @@ bool logChildren)
dataKind == DataIsStaticMember)
continue;
-
symbolDetails.top().HasChildren = true;
if (!logChildren)
{
diff --git a/src/common/Metric/Metric.h b/src/common/Metric/Metric.h
index d8dcc53fd43..6871d5fa021 100644
--- a/src/common/Metric/Metric.h
+++ b/src/common/Metric/Metric.h
@@ -131,7 +131,6 @@ public:
#define sMetric Metric::instance()
-
template<typename LoggerType>
class MetricStopWatch
{