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 c5dc7ae commit 49414e4Copy full SHA for 49414e4
src/lib/AST/ASTVisitorHelpers.hpp
@@ -140,22 +140,6 @@ convertToNoexceptKind(
140
}
141
142
143
-NoexceptKind
144
-convertToNoexceptKind(
145
- CanThrowResult kind)
146
-{
147
- using OldKind = CanThrowResult;
148
- using NewKind = NoexceptKind;
149
- switch(kind)
150
- {
151
- case OldKind::CT_Can: return NewKind::False;
152
- case OldKind::CT_Cannot: return NewKind::True;
153
- case OldKind::CT_Dependent: return NewKind::Dependent;
154
- default:
155
- MRDOCS_UNREACHABLE();
156
- }
157
-}
158
-
159
OperatorKind
160
convertToOperatorKind(
161
OverloadedOperatorKind kind)
0 commit comments