Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2015-01-25 15:47:48 +0300
committerUnderground78 <underground78@users.sourceforge.net>2015-01-25 15:47:48 +0300
commit6fcba1bead7608fb480ab943ab9689bc66f4e009 (patch)
treeef5a968e7749e8f80f310fd44a43fc5b1d394193 /src/thirdparty/unrar/timefn.hpp
parent46ce9d630e7891230c9648afb0c17088681573e6 (diff)
parent013ebae50427b2e985939439202e206373ed5aee (diff)
Merge branch 'release-1.7.8'1.7.8
Diffstat (limited to 'src/thirdparty/unrar/timefn.hpp')
-rw-r--r--src/thirdparty/unrar/timefn.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/thirdparty/unrar/timefn.hpp b/src/thirdparty/unrar/timefn.hpp
index f8c914b87..355baaf74 100644
--- a/src/thirdparty/unrar/timefn.hpp
+++ b/src/thirdparty/unrar/timefn.hpp
@@ -32,6 +32,7 @@ class RarTime
RarTime& operator =(time_t ut);
time_t GetUnix();
bool operator == (RarTime &rt) {return itime==rt.itime;}
+ bool operator != (RarTime &rt) {return itime!=rt.itime;}
bool operator < (RarTime &rt) {return itime<rt.itime;}
bool operator <= (RarTime &rt) {return itime<rt.itime || itime==rt.itime;}
bool operator > (RarTime &rt) {return itime>rt.itime;}