summaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/breakpoint/same_cu_name/common.cpp
blob: ed9a43f27b173aab79d494e86eabf07c2f15740e (plain)
1
2
3
4
5
6
7
8
namespace NAMESPACE {
static int g_value = 0;
void DoSomeStuff() {
  // A comment here
  g_value++; // The line with code
}

} // namespace NAMESPACE