Skip to content

Commit 83268a6

Browse files
author
MohamedElgammal
committed
fix some issues
1 parent f725c59 commit 83268a6

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

libs/libvtrutil/src/generate.sh

Lines changed: 0 additions & 10 deletions
This file was deleted.

libs/libvtrutil/src/vtr_string_view.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ class string_view {
3434
, size_(size) {}
3535

3636
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 {
37+
///@brief copy constructor
38+
constexpr string_view& operator=(const string_view& view) noexcept {
4139
data_ = view.data_;
4240
size_ = view.size_;
4341
return *this;

0 commit comments

Comments
 (0)