Skip to content

Commit

Permalink
global test
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincenzo Innocente committed Nov 10, 2009
1 parent b9a2b52 commit 367c4a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CondFormats/Calibration/interface/Conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
namespace condex {

struct ConfI : public cond::BaseKeyed {
ConfI() : v(0), key('\0') {}
ConfI() : v(0), key(' ') {}
ConfI(std::string k, int i) : v(i), key(k) {}
int v;
std::string key; // just for test
};

struct ConfF : public cond::BaseKeyed {
ConfF() : v(0), key('\0') {}
ConfF() : v(0), key(' ') {}
ConfF(std::string k, float i) : v(i), key(k) {}
float v;
std::string key; // just for test
Expand Down

0 comments on commit 367c4a4

Please sign in to comment.