Skip to content

Commit 9772770

Browse files
committed
Import project: Fix standard
1 parent f367313 commit 9772770

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/importproject.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ void ImportProject::importVcxproj(const std::string &filename, std::map<std::str
711711
else if (i.cppstd == Standards::CPP14)
712712
fs.standard = "c++14";
713713
else if (i.cppstd == Standards::CPP17)
714-
fs.standard = "c++14";
714+
fs.standard = "c++17";
715715
else if (i.cppstd == Standards::CPP20)
716716
fs.standard = "c++20";
717717
fs.defines += ';' + i.preprocessorDefinitions;

0 commit comments

Comments
 (0)