[libcxx-commits] [PATCH] D141388: [libc++] Remove _LIBCPP_INLINE_VISIBILITY attribute on virtual function

Yurong via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Jan 10 07:39:27 PST 2023


yronglin created this revision.
Herald added a project: All.
yronglin requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D141388

Files:
  libcxx/include/sstream


Index: libcxx/include/sstream
===================================================================
--- libcxx/include/sstream
+++ libcxx/include/sstream
@@ -260,7 +260,6 @@
     int_type overflow (int_type __c = traits_type::eof()) override;
     pos_type seekoff(off_type __off, ios_base::seekdir __way,
                      ios_base::openmode __wch = ios_base::in | ios_base::out) override;
-    _LIBCPP_INLINE_VISIBILITY
     pos_type seekpos(pos_type __sp,
                      ios_base::openmode __wch = ios_base::in | ios_base::out) override {
         return seekoff(__sp, ios_base::beg, __wch);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141388.487801.patch
Type: text/x-patch
Size: 604 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230110/51266c46/attachment.bin>


More information about the libcxx-commits mailing list