diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:26:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 19:26:05 +0000 |
commit | 14f1b3e8826ce43b978db93a62d1166055db5394 (patch) | |
tree | 0a00ad8d3498783fe0193f3b656bca17c4c8697d /packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp | |
parent | 4ee8c119c71a06dcad1e0fecc8c675e480e59337 (diff) |
Notes
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp')
-rw-r--r-- | packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp b/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp index 29d4b4cb19e76..740649622cab8 100644 --- a/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp +++ b/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp @@ -11,7 +11,7 @@ namespace Foo int Function () { printf ("%s returning: %d.\n", __FUNCTION__, m_value); - return m_value; + return m_value + 1; } private: int m_value; @@ -24,7 +24,7 @@ namespace Foo int Function () { printf ("%s returning: %d.\n", __FUNCTION__, m_value); - return m_value; + return m_value + 2; } private: int m_value; @@ -34,7 +34,7 @@ namespace Foo int Function () { printf ("%s returning: %d.\n", __FUNCTION__, bar_value); - return bar_value; + return bar_value + 3; } } } @@ -46,7 +46,7 @@ public: int Function () { printf ("%s returning: %d.\n", __FUNCTION__, m_value); - return m_value; + return m_value + 4; } private: int m_value; |