Skip to content

Commit

Permalink
Immer is compatible with C++14
Browse files Browse the repository at this point in the history
  • Loading branch information
wtholliday committed May 11, 2022
1 parent 380dc52 commit b3139b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ let package = Package(
sources: ["spm.cpp"],
publicHeadersPath: ".")
],
cxxLanguageStandard: .cxx20
cxxLanguageStandard: .cxx14
)

1 comment on commit b3139b4

@SimonBenAnderson
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @wtholliday, I was wondering when you implemented this if you added any wrappers so that package works out the box with Swift, or if this is only a package file. Reason I asked is I pulled this down for a test Swift project and I got some errors when trying to import it. Specifically some cpp missing libraries. Do you need to special setting in your XCode project?

Please sign in to comment.