Skip to content

Commit f10f685

Browse files
authored
Merge pull request #132 from Snapchat/lf/readme-n-include-fix
Remove the mention of experimental features from readme
2 parents 768f108 + 1c4a40d commit f10f685

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ value known to the compiler at compile time, then there is no runtime
267267
overhead. You may also call it with a dynamic value, in that case it's a fast
268268
array indexing operation.
269269

270-
## Experimantal WASM support
270+
## WASM support
271271

272272
Djinni can generate code that bridges C++ (that compiles to Web Assembly) and
273-
Javascript/TypeScript in web browsers. This feature is currently experimental.
273+
Javascript/TypeScript in web browsers.
274274

275275
For WASM, Djinni generates:
276276
- C++ code, which should be compiled into the WASM bindary
@@ -305,10 +305,10 @@ The command to run Wasm/TypeScript unit tests is `bazel run
305305
//test-suite:server-ts`. You will need the `tsc` compiler and the `browserify`
306306
tool to run these tests.
307307

308-
## Experimental async interface support
308+
## Async interface support
309309

310-
With the new yaml type `future<>` we can now write Djinni interfaces that
311-
return results asynchronously more easily.
310+
With the new yaml type `future<>` we can now write Djinni interfaces that return
311+
results asynchronously more easily.
312312

313313
Instead of writing this:
314314

support-lib/cpp/DataView.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616

1717
#pragma once
1818

19+
#include <cstddef>
1920
#include <cstdint>
20-
#include <functional>
21-
#include <memory>
2221

2322
namespace djinni {
2423

0 commit comments

Comments
 (0)