aboutsummaryrefslogtreecommitdiff
path: root/build/types
diff options
context:
space:
mode:
Diffstat (limited to 'build/types')
-rw-r--r--build/types9
1 files changed, 8 insertions, 1 deletions
diff --git a/build/types b/build/types
index 0a71252..c119839 100644
--- a/build/types
+++ b/build/types
@@ -7,6 +7,8 @@
#include <vector>
#include <string>
+#include <memory> // unique_ptr, shared_ptr
+#include <functional> // reference_wrapper
#include <butl/path>
#include <butl/timestamp>
@@ -17,7 +19,12 @@ namespace build
{
// Commonly-used types.
//
- using strings = std::vector<std::string>;
+ using std::string;
+ using std::unique_ptr;
+ using std::shared_ptr;
+ using std::reference_wrapper;
+
+ using strings = std::vector<string>;
using cstrings = std::vector<const char*>;
// <butl/path>