Remove noexcept from BinaryParagraph()

This commit is contained in:
Alexander Karatarakis 2018-04-25 00:19:27 -07:00
parent 967765f294
commit f6530368eb
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace vcpkg
/// </summary>
struct BinaryParagraph
{
BinaryParagraph() noexcept;
BinaryParagraph();
explicit BinaryParagraph(std::unordered_map<std::string, std::string> fields);
BinaryParagraph(const SourceParagraph& spgh, const Triplet& triplet, const std::string& abi_tag);
BinaryParagraph(const SourceParagraph& spgh, const FeatureParagraph& fpgh, const Triplet& triplet);

View File

@ -24,7 +24,7 @@ namespace vcpkg
static const std::string DEFAULTFEATURES = "Default-Features";
}
BinaryParagraph::BinaryParagraph() noexcept = default;
BinaryParagraph::BinaryParagraph() = default;
BinaryParagraph::BinaryParagraph(std::unordered_map<std::string, std::string> fields)
{