aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-09-04 20:06:22 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-09-04 20:06:22 +0200
commitf4889a3a07a9e4f599e4deecce6169ae377efd83 (patch)
tree8544a12ec24b603dcfe9f7b9d15b713be5438631
parent58786895f1d7a0af30cb7cd240c4dcb6133ea84d (diff)
Add default constructor to triplet
-rw-r--r--butl/triplet1
1 files changed, 1 insertions, 0 deletions
diff --git a/butl/triplet b/butl/triplet
index 69dc9df..090f84d 100644
--- a/butl/triplet
+++ b/butl/triplet
@@ -109,6 +109,7 @@ namespace butl
explicit
triplet (const std::string&, std::string* canon = nullptr);
triplet (const std::string& s, std::string& canon): triplet (s, &canon) {}
+ triplet () = default;
};
};