File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -387,13 +387,13 @@ template <typename T>
387
387
class CPUVector : public std ::vector<T, std::allocator<T>> {
388
388
public:
389
389
CPUVector () : std::vector<T>() {}
390
- explicit CPUVector (size_t count, const T &value = T())
390
+ CPUVector (size_t count, const T &value = T()) // NOLINT
391
391
: std::vector<T>(count, value) {}
392
392
CPUVector (std::initializer_list<T> init) : std::vector<T>(init) {}
393
- explicit CPUVector (const std::vector<T> &other) : std::vector<T>(other) {}
394
- explicit CPUVector (const CPUVector<T> &other) : std::vector<T>(other) {}
393
+ CPUVector (const std::vector<T> &other) : std::vector<T>(other) {} // NOLINT
394
+ CPUVector (const CPUVector<T> &other) : std::vector<T>(other) {}
395
395
CPUVector (CPUVector<T> &&other) : std::vector<T>(std::move(other)) {}
396
- explicit CPUVector (std::vector<T> &&other)
396
+ CPUVector (std::vector<T> &&other) // NOLINT
397
397
: std::vector<T>(std::move(other)) {}
398
398
CPUVector &operator =(const CPUVector &other) {
399
399
this ->assign (other.begin (), other.end ());
You can’t perform that action at this time.
0 commit comments