Line data Source code
1 : /*
2 : * DUNE DAQ modification notice:
3 : * This file has been modified from the original ATLAS ers source for the DUNE DAQ project.
4 : * Fork baseline commit: 8267df82a4f6fe6bf02c4014923eba19eddc4614 (2020-04-14).
5 : * Renamed since fork: yes (from src/IssueCatcherHandler.cxx to src/IssueCatcherHandler.cpp).
6 : *
7 : * Original copyright:
8 : * Copyright (C) 2001-2020 CERN for the benefit of the ATLAS collaboration.
9 : * Licensed under the Apache License, Version 2.0.
10 : */
11 :
12 : /*
13 : * IssueCatcherHandler.cxx
14 : * ERS
15 : *
16 : * Created by Serguei Kolos on 21.01.05.
17 : * Copyright 2005 CERN. All rights reserved.
18 : *
19 : */
20 :
21 : #include <ers/IssueCatcherHandler.hpp>
22 : #include <ers/LocalStream.hpp>
23 :
24 0 : ers::IssueCatcherHandler::~IssueCatcherHandler()
25 : {
26 0 : LocalStream::instance().remove_issue_catcher();
27 0 : }
|