mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
Remove noexcept from BinaryParagraph()
This commit is contained in:
parent
967765f294
commit
f6530368eb
@ -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);
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user