Skip to content

Commit

Permalink
Added missing includes to SurveyPxbImageReader
Browse files Browse the repository at this point in the history
This header references std::find, std::cout and SurveyPxbImage
but doesn't include the associated headers. This patch adds
the missing includes to make this header parsable on its own.
  • Loading branch information
Teemperor committed Nov 30, 2017
1 parent a2fb258 commit 21f2984
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Alignment/SurveyAnalysis/interface/SurveyPxbImageReader.h
@@ -1,6 +1,10 @@
#ifndef GUARD_surveypxbimagereader_h
#define GUARD_surveypxbimagereader_h

#include "Alignment/SurveyAnalysis/interface/SurveyPxbImage.h"

#include <algorithm>
#include <iostream>
#include <sstream>
#include <vector>
#include <fstream>
Expand Down
2 changes: 2 additions & 0 deletions CalibFormats/SiPixelObjects/interface/PixelTimeFormatter.h
Expand Up @@ -12,6 +12,8 @@
* A longer explanation will be placed here later
*/

#include "CalibFormats/SiPixelObjects/interface/PixelConfigKey.h"

#include <iostream>
#include <sstream>
#include <string>
Expand Down

0 comments on commit 21f2984

Please sign in to comment.