CCash/include/str_intrusion.h
EntireTwix 18452fdf1e 🐎 noexcept
2021-07-09 00:30:07 -07:00

9 lines
No EOL
170 B
C++

#pragma once
#include <string>
struct StrFromSV_Wrapper
{
std::string str;
StrFromSV_Wrapper(std::string_view sv) noexcept;
~StrFromSV_Wrapper() noexcept;
};