Skip to content

Commit

Permalink
Merge pull request #22426 from gartung/CalibFormats-CalibMuon-cleanup…
Browse files Browse the repository at this point in the history
…-clang-warnings

CalibFormats & CalibMuon : cleanup clang warnings
  • Loading branch information
cmsbuild committed Mar 5, 2018
2 parents b1da330 + 218bf6e commit c0867ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CalibFormats/SiPixelObjects/interface/PixelTrimCommon.h
Expand Up @@ -44,6 +44,9 @@ namespace pos{

void writeASCII(std::string filename) const override ;
void writeXML( pos::PixelConfigKey key, int version, std::string path) const override {;}
using PixelTrimBase::writeXMLHeader;
using PixelTrimBase::writeXML;
using PixelTrimBase::writeXMLTrailer;
void writeXMLHeader(pos::PixelConfigKey key, int version, std::string path, std::ofstream *out) const override {;}
void writeXML( std::ofstream *out) const override {;}
void writeXMLTrailer( std::ofstream *out) const override {;}
Expand Down
2 changes: 1 addition & 1 deletion CalibMuon/DTCalibration/test/stubs/DTTimeBoxPlotter.cc
Expand Up @@ -170,7 +170,7 @@ TCanvas * DTTimeBoxPlotter::newCanvas(TString name, TString title,
int xdiv, int ydiv, int form, int w){
static int i = 1;
if (name == "") {
name = TString("Canvas "+i);
name = TString("Canvas ") + TString(i);
i++;
}
TCanvas *c = 0;
Expand Down

0 comments on commit c0867ee

Please sign in to comment.