commit | f819b44bebab9307dde7252e80632a19e01d6e63 | [log] [tgz] |
---|---|---|
author | Brian Silverman <bsilver16384@gmail.com> | Sun Jan 20 16:51:04 2019 -0800 |
committer | Brian Silverman <bsilver16384@gmail.com> | Sun Jan 20 17:17:35 2019 -0800 |
tree | 4b9e130c6688e0235ee7d1c1e530381711d3aa41 | |
parent | ad597f0fcc0a09e0e1892d7ed30cbb7f72d98709 [diff] [blame] |
Dedulicate make_unique This also gets us off of the WPILib one which goes away for 2019. Change-Id: I0436ce8fd477bbb27d9b0a7c4832dad01c9bad35
diff --git a/aos/BUILD b/aos/BUILD index fca0258..2bd5791 100644 --- a/aos/BUILD +++ b/aos/BUILD
@@ -401,3 +401,11 @@ "//aos/util:run_command", ], ) + +cc_library( + name = "make_unique", + hdrs = [ + "make_unique.h", + ], + visibility = ["//visibility:public"], +)