Skip to content

Commit

Permalink
Merge pull request apple#37 from swiftwasm/master
Browse files Browse the repository at this point in the history
[pull] swiftwasm from master
  • Loading branch information
pull[bot] committed Apr 21, 2020
2 parents a22bb89 + 0cab286 commit fac19b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/PackageModel/Target.swift
Expand Up @@ -416,8 +416,8 @@ public class ClangTarget: Target {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.includeDir = try container.decode(AbsolutePath.self, forKey: .includeDir)
self.isCXX = try container.decode(Bool.self, forKey: .isCXX)
self.cLanguageStandard = try container.decode(String.self, forKey: .cLanguageStandard)
self.cxxLanguageStandard = try container.decode(String.self, forKey: .cxxLanguageStandard)
self.cLanguageStandard = try container.decodeIfPresent(String.self, forKey: .cLanguageStandard)
self.cxxLanguageStandard = try container.decodeIfPresent(String.self, forKey: .cxxLanguageStandard)
try super.init(from: decoder)
}
}
Expand Down

0 comments on commit fac19b8

Please sign in to comment.