Merge remote-tracking branch 'origin/master' into 2.0
[dcpomatic.git] / src / lib / stack.hpp
index 0430439e04f634320e63829dbfc9df0bb670617d..73a13bf85064b3842e68c637a22f6b2d05d40af1 100644 (file)
@@ -16,10 +16,11 @@ namespace dbg
     //! the name of the corresponding function and the "module" (executable or library) in which the function resides.
     struct stack_frame
     {
-        stack_frame(const void *instruction, const std::string &function, const std::string &module);
+        stack_frame(const void *instruction, const std::string &function, unsigned int line, const std::string &module);
 
         const void *instruction;
         std::string function;
+        unsigned int line;
         std::string module;
     };