/[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 3090 by persson, Sun Aug 30 10:00:44 2015 UTC revision 3091 by schoenebeck, Mon Jan 16 15:01:21 2017 UTC
# Line 251  namespace LinuxSampler { Line 251  namespace LinuxSampler {
251      }      }
252    
253      StringListPtr DirectoryFinder::GetDirectories() {      StringListPtr DirectoryFinder::GetDirectories() {
254  #if __cplusplus >= 201103L  #if __cplusplus >= 201103L && !CONFIG_NO_CPP11STL
255          return std::move(pDirectories);          return std::move(pDirectories);
256  #else  #else
257          return pDirectories;          return pDirectories;
# Line 368  namespace LinuxSampler { Line 368  namespace LinuxSampler {
368      }      }
369    
370      StringListPtr InstrumentFinder::GetInstruments() {      StringListPtr InstrumentFinder::GetInstruments() {
371  #if __cplusplus >= 201103L  #if __cplusplus >= 201103L && !CONFIG_NO_CPP11STL
372          return std::move(pInstruments);          return std::move(pInstruments);
373  #else  #else
374          return pInstruments;          return pInstruments;

Legend:
Removed from v.3090  
changed lines
  Added in v.3091

  ViewVC Help
Powered by ViewVC