summaryrefslogtreecommitdiffstats
path: root/lldb/test/class_static/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/class_static/main.cpp')
-rw-r--r--lldb/test/class_static/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/class_static/main.cpp b/lldb/test/class_static/main.cpp
index cba31fdb495..dfce224e00e 100644
--- a/lldb/test/class_static/main.cpp
+++ b/lldb/test/class_static/main.cpp
@@ -45,7 +45,7 @@ static PointType g_points[] =
int
main (int argc, char const *argv[])
{
- printf ("A::g_points[1].x = %i\n", A::g_points[1].x);
+ printf ("A::g_points[1].x = %i\n", A::g_points[1].x); // Set break point at this line.
printf ("::g_points[1].x = %i\n", g_points[1].x);
return 0;
}
OpenPOWER on IntegriCloud