about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2018-05-17 11:53:08 +0100
committerMartinNowack <martin.nowack@gmail.com>2018-05-22 11:08:24 +0100
commitb737b76ce25ded750fa0d10b10414566c0856810 (patch)
tree03fd080e27c8966ab508c44a86d3db6a8bcd4f8d /include
parentcf33f833c9c8dd28b44a3177ef0b759e0f46cb86 (diff)
downloadklee-b737b76ce25ded750fa0d10b10414566c0856810.tar.gz
Renamed printFileLine to getSourceLocation (as suggested by @delcypher) to reflect the fact that it simply returns a string
Diffstat (limited to 'include')
-rw-r--r--include/klee/Internal/Module/KInstruction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/Internal/Module/KInstruction.h b/include/klee/Internal/Module/KInstruction.h
index a81e8d8f..31720430 100644
--- a/include/klee/Internal/Module/KInstruction.h
+++ b/include/klee/Internal/Module/KInstruction.h
@@ -44,7 +44,7 @@ namespace klee {
 
   public:
     virtual ~KInstruction();
-    std::string printFileLine() const;
+    std::string getSourceLocation() const;
 
   };