Skip to content

Commit 45d2c70

Browse files
committed
Add version macro
1 parent 87d53d7 commit 45d2c70

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

markdown/intro.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
11
# Intro
22
Hello, this is the intro.
3+
4+
### Version Conformance
5+
A GraphBLAS library should define the macro `GRAPHBLAS_CPP_VERSION` to indicate its
6+
level of conformance with the GraphBLAS C++ API. To indicate conformance with the
7+
GraphBLAS 0.1 draft specification, a library should provide the macro `GRAPHBLAS_CPP_VERSION`
8+
with a value greater than or equal to `202207L`.
9+
10+
#### Exposition Only
11+
```cpp
12+
// Define the `GRAPHBLAS_CPP_VERSION` macro to indicate
13+
// conformance to the GraphBLAS 0.1 Draft Specification.
14+
#define GRAPHBLAS_CPP_VERSION 202207L
15+
```

0 commit comments

Comments
 (0)