diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-05-03 21:01:45 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-05-03 21:01:45 +0000 |
commit | 090a5b29b8815116dc9bc6925146a537ef7db123 (patch) | |
tree | 1bc7730304a23cdbe15460539ee77a03d90962a2 /lldb/packages/Python/lldbsuite/test | |
parent | 94f356863331ed204faccefdc3d47a581e6edc6e (diff) | |
download | bcm5719-llvm-090a5b29b8815116dc9bc6925146a537ef7db123.tar.gz bcm5719-llvm-090a5b29b8815116dc9bc6925146a537ef7db123.zip |
Fixed some minor style issues in rLLDB359921 [NFC]
Ran clang-format on the added test file and use the new StringRef
comparison over the temporary ConstStrings. Also aligned the
end of one of the code string literals.
llvm-svn: 359931
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/namespace_local_var_same_name_cpp_and_c/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/namespace_local_var_same_name_cpp_and_c/main.cpp b/lldb/packages/Python/lldbsuite/test/expression_command/namespace_local_var_same_name_cpp_and_c/main.cpp index cd1bac3cda7..5e8237ed190 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/namespace_local_var_same_name_cpp_and_c/main.cpp +++ b/lldb/packages/Python/lldbsuite/test/expression_command/namespace_local_var_same_name_cpp_and_c/main.cpp @@ -1,21 +1,21 @@ namespace error { - int x; +int x; } struct A { void foo() { - int error=1; + int error = 1; return; // break here } }; int main() { - int error=1; + int error = 1; - A a; + A a; - a.foo(); + a.foo(); - return 0; // break here + return 0; // break here } |