Skip to content

Commit

Permalink
Merge pull request #5692 from davidlt/fix-clang-issues
Browse files Browse the repository at this point in the history
Clang fixes related to Boost Serialization
  • Loading branch information
ktf committed Oct 6, 2014
2 parents 86db0fe + 83f701e commit a863880
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -174,7 +174,7 @@ namespace pos{

virtual void writeASCII(std::string dir="") const;
void writeXML( pos::PixelConfigKey key, int version, std::string path) const {;}
virtual void writeXMLHeader( pos::PixelConfigKey key,
virtual void writeXMLHeader( pos::PixelConfigKey &key,
int version,
std::string path,
std::ofstream *out,
Expand Down
2 changes: 1 addition & 1 deletion CalibFormats/SiPixelObjects/src/PixelCalibConfiguration.cc
Expand Up @@ -1673,7 +1673,7 @@ bool PixelCalibConfiguration::containsScan(std::string name) const
}

//=============================================================================================
void PixelCalibConfiguration::writeXMLHeader(pos::PixelConfigKey key,
void PixelCalibConfiguration::writeXMLHeader(pos::PixelConfigKey &key,
int version,
std::string path,
std::ofstream *outstream,
Expand Down
2 changes: 1 addition & 1 deletion CondFormats/RPCObjects/interface/DBSpecToDetUnit.h
Expand Up @@ -2,7 +2,7 @@
#define CondFormatsRPCObjectsDBSpecToDetUnit_H

#include "DataFormats/DetId/interface/DetId.h"
class ChamberLocationSpec;
struct ChamberLocationSpec;
class FebLocationSpec;

class DBSpecToDetUnit {
Expand Down
2 changes: 1 addition & 1 deletion CondFormats/RPCObjects/interface/DccSpec.h
Expand Up @@ -12,7 +12,7 @@
#include <boost/cstdint.hpp>
#include "CondFormats/RPCObjects/interface/TriggerBoardSpec.h"

class ChamberLocationSpec;
struct ChamberLocationSpec;

class DccSpec {
public:
Expand Down

0 comments on commit a863880

Please sign in to comment.