We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
c_raii
1 parent 29fbd92 commit 3deb042Copy full SHA for 3deb042
include/cpp2util.h
@@ -1097,8 +1097,6 @@ class c_raii {
1097
1098
c_raii(c_raii const&) = delete;
1099
auto operator=(c_raii const&) = delete;
1100
- c_raii(c_raii&& that) noexcept : t {std::move(that.t)}, dtor {that.dtor} { that.dtor = nullptr; }
1101
- auto operator=(c_raii&& that) noexcept { t = std::move(that.t); dtor = that.dtor; that.dtor = nullptr; }
1102
};
1103
1104
inline auto fopen( const char* filename, const char* mode ) {
source/parse.h
@@ -2486,7 +2486,6 @@ class parser
2486
2487
2488
//G statement:
2489
- //G let parameter-list statement
2490
//G selection-statement
2491
//G inspect-expression
2492
//G return-statement
0 commit comments