[Openmp-commits] [openmp] 230d976 - [NFC][OpenMP][libomptarget] Fix format in PluginInterface header

Kevin Sala via Openmp-commits openmp-commits at lists.llvm.org
Mon Feb 6 01:16:24 PST 2023


Author: Kevin Sala
Date: 2023-02-06T10:15:50+01:00
New Revision: 230d97685384bcb85253deeec546ee2a1b8af567

URL: https://github.com/llvm/llvm-project/commit/230d97685384bcb85253deeec546ee2a1b8af567
DIFF: https://github.com/llvm/llvm-project/commit/230d97685384bcb85253deeec546ee2a1b8af567.diff

LOG: [NFC][OpenMP][libomptarget] Fix format in PluginInterface header

Added: 
    

Modified: 
    openmp/libomptarget/plugins-nextgen/common/PluginInterface/PluginInterface.h

Removed: 
    


################################################################################
diff  --git a/openmp/libomptarget/plugins-nextgen/common/PluginInterface/PluginInterface.h b/openmp/libomptarget/plugins-nextgen/common/PluginInterface/PluginInterface.h
index 0f12f28304c28..d4b08f4874c9d 100644
--- a/openmp/libomptarget/plugins-nextgen/common/PluginInterface/PluginInterface.h
+++ b/openmp/libomptarget/plugins-nextgen/common/PluginInterface/PluginInterface.h
@@ -391,7 +391,8 @@ class PinnedAllocationMapTy {
     //              Failure to lock the buffers are silent.
     //   mandatory: Mapped host buffers are always locked and failures to lock
     //              a buffer results in a fatal error.
-    StringEnvar OMPX_LockMappedBuffers("LIBOMPTARGET_LOCK_MAPPED_HOST_BUFFERS", "off");
+    StringEnvar OMPX_LockMappedBuffers("LIBOMPTARGET_LOCK_MAPPED_HOST_BUFFERS",
+                                       "off");
 
     bool Enabled;
     if (StringParser::parse(OMPX_LockMappedBuffers.get().data(), Enabled)) {


        


More information about the Openmp-commits mailing list