[Openmp-commits] [openmp] r322830 - Add missing headers for Debug builds
Jonas Hahnfeld via Openmp-commits
openmp-commits at lists.llvm.org
Thu Jan 18 02:58:43 PST 2018
Author: hahnfeld
Date: Thu Jan 18 02:58:43 2018
New Revision: 322830
URL: http://llvm.org/viewvc/llvm-project?rev=322830&view=rev
Log:
Add missing headers for Debug builds
Modified:
openmp/trunk/libomptarget/src/rtl.cpp
openmp/trunk/libomptarget/src/rtl.h
Modified: openmp/trunk/libomptarget/src/rtl.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/libomptarget/src/rtl.cpp?rev=322830&r1=322829&r2=322830&view=diff
==============================================================================
--- openmp/trunk/libomptarget/src/rtl.cpp (original)
+++ openmp/trunk/libomptarget/src/rtl.cpp Thu Jan 18 02:58:43 2018
@@ -19,6 +19,7 @@
#include <cstring>
#include <dlfcn.h>
#include <mutex>
+#include <string>
// List of all plugins that can support offloading.
static const char *RTLNames[] = {
Modified: openmp/trunk/libomptarget/src/rtl.h
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/libomptarget/src/rtl.h?rev=322830&r1=322829&r2=322830&view=diff
==============================================================================
--- openmp/trunk/libomptarget/src/rtl.h (original)
+++ openmp/trunk/libomptarget/src/rtl.h Thu Jan 18 02:58:43 2018
@@ -17,6 +17,7 @@
#include <list>
#include <map>
#include <mutex>
+#include <string>
#include <vector>
// Forward declarations.
More information about the Openmp-commits
mailing list