reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/Decl.cpp
 4667 Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); }
 4668 void CapturedDecl::setBody(Stmt *B) { BodyAndNothrow.setPointer(B); }
 4670 bool CapturedDecl::isNothrow() const { return BodyAndNothrow.getInt(); }
 4671 void CapturedDecl::setNothrow(bool Nothrow) { BodyAndNothrow.setInt(Nothrow); }