[libcxx-commits] [PATCH] D66614: Add inline to uflow and underflow

Aditya Kumar via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Sep 3 22:22:27 PDT 2019


hiraditya updated this revision to Diff 218591.
hiraditya added a comment.

I only intend to inline uflow and underflow.


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

https://reviews.llvm.org/D66614

Files:
  include/streambuf


Index: include/streambuf
===================================================================
--- include/streambuf
+++ include/streambuf
@@ -281,7 +281,9 @@
     // 27.6.2.4.3 Get area:
     virtual streamsize showmanyc();
     virtual streamsize xsgetn(char_type* __s, streamsize __n);
+    inline
     virtual int_type underflow();
+    inline
     virtual int_type uflow();
 
     // 27.6.2.4.4 Putback:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66614.218591.patch
Type: text/x-patch
Size: 407 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20190904/713bbd89/attachment.bin>


More information about the libcxx-commits mailing list