Update gnustl.hpp

This commit is contained in:
alk 2022-11-25 00:57:11 +03:00 committed by GitHub
parent cbc73de6a1
commit f347741068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -522,6 +522,10 @@ namespace gd {
operator std::vector<T>() {
return m_internal;
}
void clear() {
m_internal.clear();
}
operator std::vector<T>() const {
return m_internal;