Skip to content

Commit 69fb5d5

Browse files
committedOct 8, 2024
types: Add two annotation types
1 parent e4f682f commit 69fb5d5

36 files changed

+1389
-38
lines changed
 

‎contrib/generate-types.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
set -x
44

5-
tag=$(git describe --tag)
5+
git_tag=$(git describe --tag)
6+
tag=${TAG:-$git_tag}
67

78
./bootstrap.sh
89

‎lib/cpp/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ EXTRA_DIST = \
272272
style-local:
273273
$(CPPSTYLE_CMD)
274274

275-
TYPE_FILES = ../../types/*.thrift ../../types/known/*.thrift
275+
TYPE_FILES = ../../types/*.thrift ../../types/*/*.thrift
276276

277277
$(TYPE_FILES):
278278
mkdir -p src/thrift/$(patsubst ../../%,%,$(dir $@))

‎lib/cpp/src/thrift/types/annotation/deprecation_constants.cpp

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/cpp/src/thrift/types/annotation/deprecation_constants.h

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/cpp/src/thrift/types/annotation/deprecation_types.cpp

+83
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/cpp/src/thrift/types/annotation/deprecation_types.h

+58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/cpp/src/thrift/types/annotation/naming_constants.cpp

+17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/cpp/src/thrift/types/annotation/naming_constants.h

+24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/cpp/src/thrift/types/annotation/naming_types.cpp

+130
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)