Skip to content

Commit 3063332

Browse files
committed
itunes plugin with c++17
1 parent f414e80 commit 3063332

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/libprojectM/FileScanner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ std::string FileScanner::extensionMatches(std::string &filename) {
7171
}
7272
}
7373

74-
return std::string();
74+
return {};
7575
}
7676

7777

src/projectM-iTunes/iTunes Plugin.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
C37EBD3D19A0112900220265 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
122122
C37EBD3F19A0112900220265 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
123123
C37EBD4619A0112900220265 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
124-
C37EBD5A19A0118600220265 /* iTunes Visualizer.pkg */ = {isa = PBXFileReference; lastKnownFileType = file; path = "iTunes Visualizer.pkg"; sourceTree = "<group>"; };
124+
C37EBD5A19A0118600220265 /* iTunes Visualizer.pkg */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.installer-pkg"; path = "iTunes Visualizer.pkg"; sourceTree = "<group>"; };
125125
C37EBD5C19A0146F00220265 /* images */ = {isa = PBXFileReference; lastKnownFileType = folder; name = images; path = ../images; sourceTree = "<group>"; };
126126
C37EBD5E19A0164400220265 /* selectViz.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = selectViz.png; path = images/selectViz.png; sourceTree = "<group>"; };
127127
C37EBD6019A01BEE00220265 /* projectM Visualizer.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = "projectM Visualizer.entitlements"; sourceTree = "<group>"; };
@@ -640,7 +640,7 @@
640640
isa = XCBuildConfiguration;
641641
buildSettings = {
642642
ALWAYS_SEARCH_USER_PATHS = NO;
643-
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
643+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
644644
CLANG_CXX_LIBRARY = "libc++";
645645
CLANG_ENABLE_MODULES = NO;
646646
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
@@ -697,7 +697,7 @@
697697
isa = XCBuildConfiguration;
698698
buildSettings = {
699699
ALWAYS_SEARCH_USER_PATHS = NO;
700-
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
700+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
701701
CLANG_CXX_LIBRARY = "libc++";
702702
CLANG_ENABLE_MODULES = NO;
703703
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;

0 commit comments

Comments
 (0)