We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f725c59 commit 83268a6Copy full SHA for 83268a6
libs/libvtrutil/src/generate.sh
libs/libvtrutil/src/vtr_string_view.h
@@ -34,10 +34,8 @@ class string_view {
34
, size_(size) {}
35
36
constexpr string_view(const string_view& other) noexcept = default;
37
- i
38
- ///@brief copy constructor
39
- constexpr string_view&
40
- operator=(const string_view& view) noexcept {
+ ///@brief copy constructor
+ constexpr string_view& operator=(const string_view& view) noexcept {
41
data_ = view.data_;
42
size_ = view.size_;
43
return *this;
0 commit comments