You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by da...@apache.org on 2017/01/06 19:58:51 UTC

kudu git commit: [doxygen] omit docs for forward declarations

Repository: kudu
Updated Branches:
  refs/heads/branch-1.2.x d50f5e1af -> f77403409


[doxygen] omit docs for forward declarations

Change-Id: I6a560f6a92202f0e7c1329fc3952c12c4fabba9f
Reviewed-on: http://gerrit.cloudera.org:8080/5614
Reviewed-by: Adar Dembo <ad...@cloudera.com>
Tested-by: Kudu Jenkins
Reviewed-on: http://gerrit.cloudera.org:8080/5622
Reviewed-by: Todd Lipcon <to...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/f7740340
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/f7740340
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/f7740340

Branch: refs/heads/branch-1.2.x
Commit: f77403409b2813e6fab34170066e06cde918ca61
Parents: d50f5e1
Author: Alexey Serbin <as...@cloudera.com>
Authored: Thu Jan 5 11:46:41 2017 -0800
Committer: Todd Lipcon <to...@apache.org>
Committed: Fri Jan 6 00:10:15 2017 +0000

----------------------------------------------------------------------
 src/kudu/client/stubs.h       | 2 ++
 src/kudu/common/partial_row.h | 2 ++
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/f7740340/src/kudu/client/stubs.h
----------------------------------------------------------------------
diff --git a/src/kudu/client/stubs.h b/src/kudu/client/stubs.h
index f2158fc..e2d5105 100644
--- a/src/kudu/client/stubs.h
+++ b/src/kudu/client/stubs.h
@@ -92,9 +92,11 @@
 // the expression is false, most compilers will issue a warning/error
 // containing the name of the variable.
 
+/// @cond
 template <bool>
 struct StubsCompileAssert {
 };
+/// @endcond
 
 #define COMPILE_ASSERT(expr, msg) \
   typedef StubsCompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1] ATTRIBUTE_UNUSED // NOLINT(*)

http://git-wip-us.apache.org/repos/asf/kudu/blob/f7740340/src/kudu/common/partial_row.h
----------------------------------------------------------------------
diff --git a/src/kudu/common/partial_row.h b/src/kudu/common/partial_row.h
index adbed4f..e0e89c9 100644
--- a/src/kudu/common/partial_row.h
+++ b/src/kudu/common/partial_row.h
@@ -34,6 +34,7 @@
 #include "kudu/util/kudu_export.h"
 #include "kudu/util/slice.h"
 
+/// @cond
 namespace kudu {
 class ColumnSchema;
 namespace client {
@@ -41,6 +42,7 @@ class KuduWriteOperation;
 template<typename KeyTypeWrapper> struct SliceKeysTestSetup;
 template<typename KeyTypeWrapper> struct IntKeysTestSetup;
 } // namespace client
+/// @endcond
 
 class Schema;
 class PartialRowPB;