summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChase Douglas <chase.douglas@ubuntu.com>2011-12-07 15:34:30 -0800
committerChase Douglas <chase.douglas@ubuntu.com>2011-12-07 15:34:30 -0800
commitdc354884d529bf6060a6a1537339527ad70d80a7 (patch)
treeb83c2e42ffb5c3f36b8f1bf81692c3812d07732b
parent016ff9329130266f10edd7f4828bf22e59a8c97f (diff)
Fix a couple usages of C++ line comments
C++ line comments are only used for documenting end of namespace scopes and #endif macros.
-rw-r--r--include/xorg/gtest/process.h2
-rw-r--r--include/xorg/gtest/test.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/xorg/gtest/process.h b/include/xorg/gtest/process.h
index 4215f7a..b185ecd 100644
--- a/include/xorg/gtest/process.h
+++ b/include/xorg/gtest/process.h
@@ -54,7 +54,7 @@ class Process {
struct Private;
Private* d_;
- // Disable copy c'tor, assignment operator
+ /* Disable copy c'tor, assignment operator */
Process(const Process&);
Process& operator=(const Process&);
};
diff --git a/include/xorg/gtest/test.h b/include/xorg/gtest/test.h
index c744c0d..0890cbf 100644
--- a/include/xorg/gtest/test.h
+++ b/include/xorg/gtest/test.h
@@ -45,7 +45,7 @@ class Test : public ::testing::Test {
Private* d_;
private:
- // Disable copy c'tor, assignment operator
+ /* Disable copy c'tor, assignment operator */
Test(const Test&);
Test& operator=(const Test&);
};