diff options
author | Johannes Schickel | 2008-09-03 19:07:38 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-09-03 19:07:38 +0000 |
commit | 6601e6ae7c7374cabd4dec7eba03cc2ab07393aa (patch) | |
tree | f7c9c37beb553948c3d2575107850d77743fa823 /common | |
parent | ad87f08192cd5ba129f83f6e50ed7b6f2113e075 (diff) | |
download | scummvm-rg350-6601e6ae7c7374cabd4dec7eba03cc2ab07393aa.tar.gz scummvm-rg350-6601e6ae7c7374cabd4dec7eba03cc2ab07393aa.tar.bz2 scummvm-rg350-6601e6ae7c7374cabd4dec7eba03cc2ab07393aa.zip |
Minor formatting cleanup.
svn-id: r34319
Diffstat (limited to 'common')
-rw-r--r-- | common/archive.h | 2 | ||||
-rw-r--r-- | common/ptr.h | 4 |
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 - - - |