aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2019-04-04 19:50:15 +0200
committerRechi <Rechi@users.noreply.github.com>2019-04-04 19:50:15 +0200
commitb64f8b5b5bf604482a476092a398bd7acf23392f (patch)
tree6ad3b1f578ef9888dff7fa7c3494d3d88c947be9
parent9b00eee8fb29127e10ef174c74234f4d8747d9c0 (diff)
[cleanup] remove ifdef include guards
-rw-r--r--xbmc/cores/DllLoader/LibraryLoader.h5
-rw-r--r--xbmc/cores/DllLoader/SoLoader.h5
-rw-r--r--xbmc/guilib/IMsgTargetCallback.h5
-rw-r--r--xbmc/network/GUIDialogAccessPoints.h5
4 files changed, 0 insertions, 20 deletions
diff --git a/xbmc/cores/DllLoader/LibraryLoader.h b/xbmc/cores/DllLoader/LibraryLoader.h
index 88245dd0b6..a8db9861c2 100644
--- a/xbmc/cores/DllLoader/LibraryLoader.h
+++ b/xbmc/cores/DllLoader/LibraryLoader.h
@@ -8,9 +8,6 @@
#pragma once
-#ifndef LIBRARY_LOADER
-#define LIBRARY_LOADER
-
#include <string>
#ifdef TARGET_POSIX
@@ -47,5 +44,3 @@ private:
std::string m_path;
int m_iRefCount;
};
-
-#endif
diff --git a/xbmc/cores/DllLoader/SoLoader.h b/xbmc/cores/DllLoader/SoLoader.h
index e103891eb2..4adc7e9a39 100644
--- a/xbmc/cores/DllLoader/SoLoader.h
+++ b/xbmc/cores/DllLoader/SoLoader.h
@@ -1,6 +1,3 @@
-#ifndef SO_LOADER
-#define SO_LOADER
-
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
@@ -36,5 +33,3 @@ private:
bool m_bGlobal;
bool m_bLoaded;
};
-
-#endif
diff --git a/xbmc/guilib/IMsgTargetCallback.h b/xbmc/guilib/IMsgTargetCallback.h
index 6ebb26f70b..09d888e602 100644
--- a/xbmc/guilib/IMsgTargetCallback.h
+++ b/xbmc/guilib/IMsgTargetCallback.h
@@ -13,9 +13,6 @@
\brief
*/
-#ifndef GUILIB_IMSGTARGETCALLBACK
-#define GUILIB_IMSGTARGETCALLBACK
-
#include "GUIMessage.h"
/*!
@@ -28,5 +25,3 @@ public:
virtual bool OnMessage(CGUIMessage& message) = 0;
virtual ~IMsgTargetCallback() = default;
};
-
-#endif
diff --git a/xbmc/network/GUIDialogAccessPoints.h b/xbmc/network/GUIDialogAccessPoints.h
index 4db3104235..dcc0522f5b 100644
--- a/xbmc/network/GUIDialogAccessPoints.h
+++ b/xbmc/network/GUIDialogAccessPoints.h
@@ -1,6 +1,3 @@
-#ifndef GUI_DIALOG_ACCESS_POINTS
-#define GUI_DIALOG_ACCESS_POINTS
-
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
@@ -37,5 +34,3 @@ private:
bool m_wasItemSelected;
CFileItemList *m_accessPoints;
};
-
-#endif