Skip to content

Commit a48a34f

Browse files
committed
Add missing #include
1 parent 902cf5d commit a48a34f

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

CondFormats/Common/interface/SmallWORMDict.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ namespace cond {
2626
friend int test::SmallWORMDict::test();
2727

2828
public:
29-
SmallWORMDict();
30-
~SmallWORMDict();
29+
SmallWORMDict() = default;
30+
~SmallWORMDict() = default;
3131

3232
struct Frame {
3333
Frame() : b(nullptr) {}

CondFormats/Common/src/SmallWORMDict.cc

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
#include "CondFormats/Common/interface/SmallWORMDict.h"
2-
#include <string>
1+
#include <algorithm>
32
#include <functional>
43
#include <numeric>
54

6-
namespace cond {
7-
using namespace std::placeholders;
5+
#include "CondFormats/Common/interface/SmallWORMDict.h"
86

9-
SmallWORMDict::SmallWORMDict() {}
10-
SmallWORMDict::~SmallWORMDict() {}
7+
namespace cond {
118

129
SmallWORMDict::SmallWORMDict(std::vector<std::string> const& idict)
1310
: m_data(std::accumulate(idict.begin(), idict.end(), 0, [](int a, std::string b) { return a + b.size(); })),

0 commit comments

Comments
 (0)