/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/FWLite/src/ESHandle.cc
30 строк
674 B
W. David Dagenhart
From scram b code-format-all (clang-format)
10 май 2019, 17:51
10 май 2019, 17:51
82e0ab0
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: FWLite // Class : ESHandle // // Implementation: // [Notes on implementation] // // Original Author: // Created: Mon Dec 14 15:29:19 CST 2009 // // system include files // user include files #include "DataFormats/FWLite/interface/ESHandle.h" // // constants, enums and typedefs // static cms::Exception s_exc("ESHandleUnset", "The ESHandle is being accessed without ever being set by a Record"); static void doNotDelete(cms::Exception*) {} namespace fwlite { std::shared_ptr<cms::Exception> eshandle_not_set_exception() { return std::shared_ptr<cms::Exception>(&s_exc, doNotDelete); } } // namespace fwlite