[libcxx-commits] [PATCH] D93316: [libc++] Fix extern C for __sanitizer_annotate_contiguous_container() (for gcc)

Louis Dionne via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Dec 17 13:20:52 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG6340f890bb86: [libc++] Fix extern C for __sanitizer_annotate_contiguous_container() (for gcc) (authored by azat, committed by ldionne).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D93316/new/

https://reviews.llvm.org/D93316

Files:
  libcxx/include/__config


Index: libcxx/include/__config
===================================================================
--- libcxx/include/__config
+++ libcxx/include/__config
@@ -1082,7 +1082,7 @@
 #endif
 
 #ifndef _LIBCPP_HAS_NO_ASAN
-_LIBCPP_FUNC_VIS extern "C" void __sanitizer_annotate_contiguous_container(
+extern "C" _LIBCPP_FUNC_VIS void __sanitizer_annotate_contiguous_container(
   const void *, const void *, const void *, const void *);
 #endif
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D93316.312602.patch
Type: text/x-patch
Size: 440 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20201217/7cbf7ab6/attachment.bin>


More information about the libcxx-commits mailing list