File tree 1 file changed +2
-11
lines changed
1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change 1
1
/* ******************************************************************************
2
- * Copyright 2020-2023 Intel Corporation
2
+ * Copyright 2020-2024 Intel Corporation
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -35,19 +35,10 @@ void print_verbose_header();
35
35
36
36
struct partition_info_t {
37
37
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);
46
39
const char *c_str () const { return str_.c_str (); }
47
40
bool is_initialized () const { return is_initialized_; }
48
41
49
- void init (const engine_t *engine, const compiled_partition_t *partition);
50
-
51
42
private:
52
43
std::string str_;
53
44
You can’t perform that action at this time.
0 commit comments