aboutsummaryrefslogtreecommitdiff
path: root/elf_reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'elf_reader.h')
-rw-r--r--elf_reader.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/elf_reader.h b/elf_reader.h
index 12d5711..159096a 100644
--- a/elf_reader.h
+++ b/elf_reader.h
@@ -31,16 +31,16 @@
#include "elf_loader.h"
#include "filter.h"
#include "graph.h"
-#include "metrics.h"
#include "reader_options.h"
+#include "runtime.h"
namespace stg {
namespace elf {
-Id Read(Graph& graph, const std::string& path, ReadOptions options,
- const std::unique_ptr<Filter>& file_filter, Metrics& metrics);
-Id Read(Graph& graph, char* data, size_t size, ReadOptions options,
- const std::unique_ptr<Filter>& file_filter, Metrics& metrics);
+Id Read(Runtime& runtime, Graph& graph, const std::string& path,
+ ReadOptions options, const std::unique_ptr<Filter>& file_filter);
+Id Read(Runtime& runtime, Graph& graph, char* data, size_t size,
+ ReadOptions options, const std::unique_ptr<Filter>& file_filter);
// For unit tests only
namespace internal {