We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5957717 commit 470092dCopy full SHA for 470092d
src/expire-output.hpp
@@ -29,16 +29,16 @@ class expire_output_t
29
public:
30
expire_output_t() = default;
31
32
- std::string filename() const noexcept { return m_filename; }
+ std::string const &filename() const noexcept { return m_filename; }
33
34
void set_filename(std::string filename)
35
{
36
m_filename = std::move(filename);
37
}
38
39
- std::string schema() const noexcept { return m_schema; }
+ std::string const &schema() const noexcept { return m_schema; }
40
41
- std::string table() const noexcept { return m_table; }
+ std::string const &table() const noexcept { return m_table; }
42
43
void set_schema_and_table(std::string schema, std::string table)
44
0 commit comments