|
||||
File indexing completed on 2024-04-06 12:13:13
0001 #include "FWCore/Utilities/interface/ExceptionPropagate.h" 0002 0003 namespace edm { 0004 namespace threadLocalException { 0005 static thread_local std::exception_ptr stdExceptionPtr; 0006 void setException(std::exception_ptr e) { stdExceptionPtr = e; } 0007 std::exception_ptr getException() { return stdExceptionPtr; } 0008 } // namespace threadLocalException 0009 0010 } // namespace edm
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |