File tree 2 files changed +0
-18
lines changed
2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,6 @@ struct Expression {
22
22
std::vector<uint8_t > rpn{}; // Bytes serializing the RPN expression
23
23
uint32_t rpnPatchSize = 0 ; // Size the expression will take in the object file
24
24
25
- Expression () = default ;
26
- Expression (Expression &&) = default ;
27
- #ifdef _MSC_VER
28
- // MSVC and WinFlexBison won't build without this...
29
- Expression (Expression const &) = default;
30
- #endif
31
-
32
- Expression &operator =(Expression &&) = default ;
33
-
34
25
bool isKnown () const { return data.holds <int32_t >(); }
35
26
int32_t value () const { return data.get <int32_t >(); }
36
27
Original file line number Diff line number Diff line change 31
31
struct StrFmtArgList {
32
32
std::string format;
33
33
std::vector<Either<uint32_t , std::string>> args;
34
-
35
- StrFmtArgList () = default ;
36
- StrFmtArgList (StrFmtArgList &&) = default ;
37
- #ifdef _MSC_VER
38
- // MSVC and WinFlexBison won't build without this...
39
- StrFmtArgList (StrFmtArgList const &) = default;
40
- #endif
41
-
42
- StrFmtArgList &operator =(StrFmtArgList &&) = default ;
43
34
};
44
35
}
45
36
You can’t perform that action at this time.
0 commit comments