Skip to content

Commit

Permalink
Merge pull request #1574 from wmtan/AddMissingIOStreamIncludes
Browse files Browse the repository at this point in the history
Add missing iostream includes
  • Loading branch information
davidlt committed Nov 23, 2013
2 parents 974d97a + b8ad391 commit 1be88c1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions FWCore/TFWLiteSelector/src/TFWLiteSelectorBasic.cc
Expand Up @@ -52,6 +52,11 @@
#include "TFile.h"
#include "TTree.h"

#include <iostream>
#include <memory>
#include <string>
#include <vector>

namespace edm {
namespace root {
class FWLiteDelayedReader : public DelayedReader {
Expand Down
3 changes: 2 additions & 1 deletion IOPool/Streamer/src/StreamSerializer.cc
Expand Up @@ -25,7 +25,8 @@
#include "zlib.h"
#include <algorithm>
#include <cstdlib>
#include <list>
#include <iostream>
#include <vector>

namespace edm {

Expand Down
3 changes: 3 additions & 0 deletions IOPool/Streamer/src/StreamerOutputModuleBase.cc
Expand Up @@ -15,9 +15,12 @@
#include "DataFormats/Common/interface/TriggerResults.h"
#include "DataFormats/Provenance/interface/ParameterSetID.h"

#include <iostream>
#include <memory>
#include <string>
#include <sys/time.h>
#include <unistd.h>
#include <vector>
#include "zlib.h"

namespace {
Expand Down
1 change: 1 addition & 0 deletions L1Trigger/GlobalTrigger/src/CompareToObjectMapRecord.cc
Expand Up @@ -16,6 +16,7 @@
#include "L1Trigger/GlobalTrigger/interface/CompareToObjectMapRecord.h"

#include <algorithm>
#include <iostream>
#include <string>
#include <vector>

Expand Down

0 comments on commit 1be88c1

Please sign in to comment.