[libc-commits] [PATCH] D73530: [libc] Add a library of standalone C++ utilities.
Michael Schellenberger Costa via Phabricator via libc-commits
libc-commits at lists.llvm.org
Wed Jan 29 02:03:47 PST 2020
miscco added inline comments.
================
Comment at: libc/utils/CPP/ArrayRef.h:65
+
+ MutableArrayRef() = default;
+
----------------
All constructors defere to those of the base class so you should be able to use inheriting constructors aka:
`using ArrayRef<T>::ArrayRef<T>`;
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D73530/new/
https://reviews.llvm.org/D73530
More information about the libc-commits
mailing list