[1/3] ctf-reader: Use argument by reference reading the context
Commit Message
* src/abg-ctf-reader.cc (read_context): Use const argument
pass by reference.
(create_read_context): Likewise.
---
include/abg-ctf-reader.h | 8 ++++----
src/abg-ctf-reader.cc | 5 +++--
2 files changed, 7 insertions(+), 6 deletions(-)
@@ -25,10 +25,10 @@ namespace ctf_reader
{
class read_context;
-read_context *create_read_context (std::string elf_path,
- ir::environment *env);
-corpus_sptr read_corpus (read_context *ctxt,
- elf_reader::status& status);
+read_context *create_read_context(const std::string& elf_path,
+ ir::environment *env);
+corpus_sptr read_corpus(read_context *ctxt,
+ elf_reader::status& status);
} // end namespace ctf_reader
} // end namespace abigail
@@ -102,7 +102,7 @@ public:
/// Constructor.
///
/// @param elf_path the path to the ELF file.
- read_context(string elf_path, ir::environment *env)
+ read_context(const string& elf_path, ir::environment *env)
{
types_map.clear();
filename = elf_path;
@@ -1060,7 +1060,8 @@ slurp_elf_info(read_context *ctxt, corpus_sptr corp)
/// @param env a libabigail IR environment.
read_context *
-create_read_context(std::string elf_path, ir::environment *env)
+create_read_context(const std::string& elf_path,
+ ir::environment *env)
{
return new read_context(elf_path, env);
}