/[svn]/linuxsampler/trunk/src/db/InstrumentsDbUtilities.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/db/InstrumentsDbUtilities.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2839 by persson, Tue Jul 14 18:25:11 2009 UTC revision 2840 by persson, Sun Aug 30 10:00:44 2015 UTC
# Line 251  namespace LinuxSampler { Line 251  namespace LinuxSampler {
251      }      }
252    
253      StringListPtr DirectoryFinder::GetDirectories() {      StringListPtr DirectoryFinder::GetDirectories() {
254    #if __cplusplus >= 201103L
255            return std::move(pDirectories);
256    #else
257          return pDirectories;          return pDirectories;
258    #endif
259      }      }
260            
261      void DirectoryFinder::ProcessDirectory(String Path, int DirId) {      void DirectoryFinder::ProcessDirectory(String Path, int DirId) {
# Line 364  namespace LinuxSampler { Line 368  namespace LinuxSampler {
368      }      }
369    
370      StringListPtr InstrumentFinder::GetInstruments() {      StringListPtr InstrumentFinder::GetInstruments() {
371    #if __cplusplus >= 201103L
372            return std::move(pInstruments);
373    #else
374          return pInstruments;          return pInstruments;
375    #endif
376      }      }
377    
378      void DirectoryCounter::ProcessDirectory(String Path, int DirId) {      void DirectoryCounter::ProcessDirectory(String Path, int DirId) {

Legend:
Removed from v.2839  
changed lines
  Added in v.2840

  ViewVC Help
Powered by ViewVC