aboutsummaryrefslogtreecommitdiff
path: root/src/3rdParty
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdParty')
-rwxr-xr-xsrc/3rdParty/efsw/FileInfo.hpp4
-rwxr-xr-xsrc/3rdParty/efsw/FileWatcherFSEvents.cpp6
-rwxr-xr-xsrc/3rdParty/efsw/FileWatcherKqueue.cpp4
-rwxr-xr-xsrc/3rdParty/efsw/String.cpp16
-rwxr-xr-xsrc/3rdParty/efsw/Utf.inl6
-rwxr-xr-xsrc/3rdParty/efsw/WatcherFSEvents.cpp2
6 files changed, 20 insertions, 18 deletions
diff --git a/src/3rdParty/efsw/FileInfo.hpp b/src/3rdParty/efsw/FileInfo.hpp
index a8dd3d3..f1bcf4b 100755
--- a/src/3rdParty/efsw/FileInfo.hpp
+++ b/src/3rdParty/efsw/FileInfo.hpp
@@ -18,10 +18,12 @@ class FileInfo {
18 18
19 FileInfo(); 19 FileInfo();
20 20
21 FileInfo( const std::string& filepath ); 21 explicit FileInfo( const std::string& filepath );
22 22
23 FileInfo( const std::string& filepath, bool linkInfo ); 23 FileInfo( const std::string& filepath, bool linkInfo );
24 24
25 FileInfo( const FileInfo& ) = default;
26
25 bool operator==( const FileInfo& Other ) const; 27 bool operator==( const FileInfo& Other ) const;
26 28
27 bool operator!=( const FileInfo& Other ) const; 29 bool operator!=( const FileInfo& Other ) const;
diff --git a/src/3rdParty/efsw/FileWatcherFSEvents.cpp b/src/3rdParty/efsw/FileWatcherFSEvents.cpp
index 970810d..bcfdbe6 100755
--- a/src/3rdParty/efsw/FileWatcherFSEvents.cpp
+++ b/src/3rdParty/efsw/FileWatcherFSEvents.cpp
@@ -41,7 +41,7 @@ bool FileWatcherFSEvents::isGranular() {
41 return getOSXReleaseNumber() >= 11; 41 return getOSXReleaseNumber() >= 11;
42} 42}
43 43
44void FileWatcherFSEvents::FSEventCallback( ConstFSEventStreamRef streamRef, void* userData, 44void FileWatcherFSEvents::FSEventCallback( ConstFSEventStreamRef /*streamRef*/, void* userData,
45 size_t numEvents, void* eventPaths, 45 size_t numEvents, void* eventPaths,
46 const FSEventStreamEventFlags eventFlags[], 46 const FSEventStreamEventFlags eventFlags[],
47 const FSEventStreamEventId eventIds[] ) { 47 const FSEventStreamEventId eventIds[] ) {
@@ -208,8 +208,8 @@ void FileWatcherFSEvents::run() {
208 mRunLoopRef = NULL; 208 mRunLoopRef = NULL;
209} 209}
210 210
211void FileWatcherFSEvents::handleAction( Watcher* watch, const std::string& filename, 211void FileWatcherFSEvents::handleAction( Watcher* /*watch*/, const std::string& /*filename*/,
212 unsigned long action, std::string oldFilename ) { 212 unsigned long /*action*/, std::string /*oldFilename*/ ) {
213 /// Not used 213 /// Not used
214} 214}
215 215
diff --git a/src/3rdParty/efsw/FileWatcherKqueue.cpp b/src/3rdParty/efsw/FileWatcherKqueue.cpp
index 9c86755..38ffad9 100755
--- a/src/3rdParty/efsw/FileWatcherKqueue.cpp
+++ b/src/3rdParty/efsw/FileWatcherKqueue.cpp
@@ -181,8 +181,8 @@ void FileWatcherKqueue::run() {
181 } while ( mInitOK ); 181 } while ( mInitOK );
182} 182}
183 183
184void FileWatcherKqueue::handleAction( Watcher* watch, const std::string& filename, 184void FileWatcherKqueue::handleAction( Watcher* /*watch*/, const std::string& /*filename*/,
185 unsigned long action, std::string oldFilename ) {} 185 unsigned long /*action*/, std::string /*oldFilename*/ ) {}
186 186
187std::list<std::string> FileWatcherKqueue::directories() { 187std::list<std::string> FileWatcherKqueue::directories() {
188 std::list<std::string> dirs; 188 std::list<std::string> dirs;
diff --git a/src/3rdParty/efsw/String.cpp b/src/3rdParty/efsw/String.cpp
index 8c9a3cc..e3ba68f 100755
--- a/src/3rdParty/efsw/String.cpp
+++ b/src/3rdParty/efsw/String.cpp
@@ -382,7 +382,7 @@ String& String::assign( const String& str, size_t pos, size_t n ) {
382 return *this; 382 return *this;
383} 383}
384 384
385String& String::assign( const char* s, size_t n ) { 385String& String::assign( const char* s, size_t /*n*/ ) {
386 String tmp( s ); 386 String tmp( s );
387 387
388 mString.assign( tmp.mString ); 388 mString.assign( tmp.mString );
@@ -416,7 +416,7 @@ String& String::append( const String& str, size_t pos, size_t n ) {
416 return *this; 416 return *this;
417} 417}
418 418
419String& String::append( const char* s, size_t n ) { 419String& String::append( const char* s, size_t /*n*/ ) {
420 String tmp( s ); 420 String tmp( s );
421 421
422 mString.append( tmp.mString ); 422 mString.append( tmp.mString );
@@ -510,7 +510,7 @@ std::size_t String::find( const String& str, std::size_t start ) const {
510 return mString.find( str.mString, start ); 510 return mString.find( str.mString, start );
511} 511}
512 512
513std::size_t String::find( const char* s, std::size_t pos, std::size_t n ) const { 513std::size_t String::find( const char* s, std::size_t pos, std::size_t /*n*/ ) const {
514 return find( String( s ), pos ); 514 return find( String( s ), pos );
515} 515}
516 516
@@ -526,7 +526,7 @@ std::size_t String::rfind( const String& str, std::size_t pos ) const {
526 return mString.rfind( str.mString, pos ); 526 return mString.rfind( str.mString, pos );
527} 527}
528 528
529std::size_t String::rfind( const char* s, std::size_t pos, std::size_t n ) const { 529std::size_t String::rfind( const char* s, std::size_t pos, std::size_t /*n*/ ) const {
530 return rfind( String( s ), pos ); 530 return rfind( String( s ), pos );
531} 531}
532 532
@@ -575,7 +575,7 @@ std::size_t String::find_first_of( const String& str, std::size_t pos ) const {
575 return mString.find_first_of( str.mString, pos ); 575 return mString.find_first_of( str.mString, pos );
576} 576}
577 577
578std::size_t String::find_first_of( const char* s, std::size_t pos, std::size_t n ) const { 578std::size_t String::find_first_of( const char* s, std::size_t pos, std::size_t /*n*/ ) const {
579 return find_first_of( String( s ), pos ); 579 return find_first_of( String( s ), pos );
580} 580}
581 581
@@ -591,7 +591,7 @@ std::size_t String::find_last_of( const String& str, std::size_t pos ) const {
591 return mString.find_last_of( str.mString, pos ); 591 return mString.find_last_of( str.mString, pos );
592} 592}
593 593
594std::size_t String::find_last_of( const char* s, std::size_t pos, std::size_t n ) const { 594std::size_t String::find_last_of( const char* s, std::size_t pos, std::size_t /*n*/ ) const {
595 return find_last_of( String( s ), pos ); 595 return find_last_of( String( s ), pos );
596} 596}
597 597
@@ -607,7 +607,7 @@ std::size_t String::find_first_not_of( const String& str, std::size_t pos ) cons
607 return mString.find_first_not_of( str.mString, pos ); 607 return mString.find_first_not_of( str.mString, pos );
608} 608}
609 609
610std::size_t String::find_first_not_of( const char* s, std::size_t pos, std::size_t n ) const { 610std::size_t String::find_first_not_of( const char* s, std::size_t pos, std::size_t /*n*/ ) const {
611 return find_first_not_of( String( s ), pos ); 611 return find_first_not_of( String( s ), pos );
612} 612}
613 613
@@ -623,7 +623,7 @@ std::size_t String::find_last_not_of( const String& str, std::size_t pos ) const
623 return mString.find_last_not_of( str.mString, pos ); 623 return mString.find_last_not_of( str.mString, pos );
624} 624}
625 625
626std::size_t String::find_last_not_of( const char* s, std::size_t pos, std::size_t n ) const { 626std::size_t String::find_last_not_of( const char* s, std::size_t pos, std::size_t /*n*/ ) const {
627 return find_last_not_of( String( s ), pos ); 627 return find_last_not_of( String( s ), pos );
628} 628}
629 629
diff --git a/src/3rdParty/efsw/Utf.inl b/src/3rdParty/efsw/Utf.inl
index 7e3e9d6..5b6c2e0 100755
--- a/src/3rdParty/efsw/Utf.inl
+++ b/src/3rdParty/efsw/Utf.inl
@@ -375,17 +375,17 @@ template <typename In, typename Out> Out Utf<16>::ToUtf32( In begin, In end, Out
375 return output; 375 return output;
376} 376}
377 377
378template <typename In> In Utf<32>::Decode( In begin, In end, Uint32& output, Uint32 ) { 378template <typename In> In Utf<32>::Decode( In begin, In /*end*/, Uint32& output, Uint32 ) {
379 output = *begin++; 379 output = *begin++;
380 return begin; 380 return begin;
381} 381}
382 382
383template <typename Out> Out Utf<32>::Encode( Uint32 input, Out output, Uint32 replacement ) { 383template <typename Out> Out Utf<32>::Encode( Uint32 input, Out output, Uint32 /*replacement*/ ) {
384 *output++ = input; 384 *output++ = input;
385 return output; 385 return output;
386} 386}
387 387
388template <typename In> In Utf<32>::Next( In begin, In end ) { 388template <typename In> In Utf<32>::Next( In begin, In /*end*/ ) {
389 return ++begin; 389 return ++begin;
390} 390}
391 391
diff --git a/src/3rdParty/efsw/WatcherFSEvents.cpp b/src/3rdParty/efsw/WatcherFSEvents.cpp
index 6ccf527..b562d3c 100755
--- a/src/3rdParty/efsw/WatcherFSEvents.cpp
+++ b/src/3rdParty/efsw/WatcherFSEvents.cpp
@@ -11,7 +11,7 @@ WatcherFSEvents::WatcherFSEvents() :
11 Watcher(), FWatcher( NULL ), FSStream( NULL ), WatcherGen( NULL ), initializedAsync( false ) {} 11 Watcher(), FWatcher( NULL ), FSStream( NULL ), WatcherGen( NULL ), initializedAsync( false ) {}
12 12
13WatcherFSEvents::WatcherFSEvents( WatchID id, std::string directory, FileWatchListener* listener, 13WatcherFSEvents::WatcherFSEvents( WatchID id, std::string directory, FileWatchListener* listener,
14 bool recursive, WatcherFSEvents* parent ) : 14 bool recursive, WatcherFSEvents* /*parent*/ ) :
15 Watcher( id, directory, listener, recursive ), 15 Watcher( id, directory, listener, recursive ),
16 FWatcher( NULL ), 16 FWatcher( NULL ),
17 FSStream( NULL ), 17 FSStream( NULL ),