From 60f6b00144d5b5a2446e55f0389009a468a79a7d Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 25 Mar 2015 17:37:01 +0100 Subject: [PATCH] bindings/cxx/classes.cpp: Fix a typo. --- bindings/cxx/classes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/cxx/classes.cpp b/bindings/cxx/classes.cpp index c88dc566..0916a2da 100644 --- a/bindings/cxx/classes.cpp +++ b/bindings/cxx/classes.cpp @@ -888,7 +888,7 @@ Session::Session(shared_ptr context) : _context(context), _saving(false) { - check(sr_session_new(context->structure, &_structure)); + check(sr_session_new(context->_structure, &_structure)); _context->_session = this; }