summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDerek Bailey <derekbailey@google.com>2022-01-29 19:42:56 -0800
committerGitHub <noreply@github.com>2022-01-29 19:42:56 -0800
commit7089c9ecddb5e8fba49b875f871cf27e3a31d13f (patch)
tree3ed6f03377d15c050b5aa522686738862e9f005e /docs
parent43203984f7e7095435e849ad09c363b16325aa2b (diff)
downloadflatbuffers-7089c9ecddb5e8fba49b875f871cf27e3a31d13f.tar.gz
flatbuffers-7089c9ecddb5e8fba49b875f871cf27e3a31d13f.tar.bz2
flatbuffers-7089c9ecddb5e8fba49b875f871cf27e3a31d13f.zip
Convert flatbuffers_version_string to inline function (#7046)
* Skip conditional for python executable * replaced flatbuffers_version_string with inline function * use const char* instead of string
Diffstat (limited to 'docs')
-rw-r--r--docs/source/Building.md11
1 files changed, 0 insertions, 11 deletions
diff --git a/docs/source/Building.md b/docs/source/Building.md
index cc69f484..d7e9ca3c 100644
--- a/docs/source/Building.md
+++ b/docs/source/Building.md
@@ -121,14 +121,3 @@ add this directive:
set(FLATBUFFERS_MAX_PARSING_DEPTH 16)
```
to `CMakeLists.txt` file before `add_subdirectory(${FLATBUFFERS_SRC_DIR})` line.
-
-#### For Google Play apps
-
-For applications on Google Play that integrate this library, usage is tracked.
-This tracking is done automatically using the embedded version string
-(flatbuffer_version_string), and helps us continue to optimize it.
-Aside from consuming a few extra bytes in your application binary, it shouldn't
-affect your application at all. We use this information to let us know if
-FlatBuffers is useful and if we should continue to invest in it. Since this is
-open source, you are free to remove the version string but we would appreciate
-if you would leave it in.