Skip to content

Commit 4392e04

Browse files
committed
graph: utils: verbose: use default special functions
1 parent 7042378 commit 4392e04

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

src/graph/utils/verbose.hpp

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2020-2023 Intel Corporation
2+
* Copyright 2020-2024 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -35,19 +35,10 @@ void print_verbose_header();
3535

3636
struct partition_info_t {
3737
partition_info_t() = default;
38-
partition_info_t(const partition_info_t &rhs)
39-
: str_(rhs.str_), is_initialized_(rhs.is_initialized_) {};
40-
partition_info_t &operator=(const partition_info_t &rhs) {
41-
str_ = rhs.str_;
42-
is_initialized_ = rhs.is_initialized_;
43-
return *this;
44-
}
45-
38+
void init(const engine_t *engine, const compiled_partition_t *partition);
4639
const char *c_str() const { return str_.c_str(); }
4740
bool is_initialized() const { return is_initialized_; }
4841

49-
void init(const engine_t *engine, const compiled_partition_t *partition);
50-
5142
private:
5243
std::string str_;
5344

0 commit comments

Comments
 (0)