From 5d77776c55d685f4da55cfd94576e9c3809c3ec1 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Sun, 19 Feb 2017 14:53:59 +0000 Subject: [PATCH] Belatedly add variant.cpp to libc++. This completes the support for the upcoming C++17 std::variant template. --- lib/libc++/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libc++/Makefile b/lib/libc++/Makefile index 0d4e1eecd22b..4cb8037dc05a 100644 --- a/lib/libc++/Makefile +++ b/lib/libc++/Makefile @@ -44,6 +44,7 @@ SRCS+= thread.cpp SRCS+= typeinfo.cpp SRCS+= utility.cpp SRCS+= valarray.cpp +SRCS+= variant.cpp CXXRT_SRCS+= auxhelper.cc CXXRT_SRCS+= dynamic_cast.cc