aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/archive.h2
-rw-r--r--common/ptr.h4
2 files changed, 1 insertions, 5 deletions
diff --git a/common/archive.h b/common/archive.h
index 4daeb51d82..e6a4728312 100644
--- a/common/archive.h
+++ b/common/archive.h
@@ -152,7 +152,7 @@ public:
* match. SearchSet *DOES* guarantee that searches are performed in *DESCENDING*
* priority order. In case of conflicting priorities, insertion order prevails.
*/
- class SearchSet : public Archive {
+class SearchSet : public Archive {
struct Node {
uint _priority;
String _name;
diff --git a/common/ptr.h b/common/ptr.h
index c6fcaa4f75..99bc82a2d3 100644
--- a/common/ptr.h
+++ b/common/ptr.h
@@ -218,8 +218,4 @@ bool operator!=(const Common::SharedPtr<T1> &l, const Common::SharedPtr<T2> &r)
return l.get() != r.get();
}
-
#endif
-
-
-