Missing "MP_" prefix

RETURN_IF_ERROR  & ASSIGN_OR_RETURN  should be MP_RETURN_IF_ERROR and MP_ASSIGN_OR_RETURN
This commit is contained in:
lorabit 2019-12-12 11:19:24 -08:00 committed by GitHub
parent 38ee2603a7
commit 7577cbec37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,10 +80,10 @@
```c++ ```c++
CalculatorGraph graph; CalculatorGraph graph;
RETURN_IF_ERROR(graph.Initialize(config)); MP_RETURN_IF_ERROR(graph.Initialize(config));
ASSIGN_OR_RETURN(OutputStreamPoller poller, MP_ASSIGN_OR_RETURN(OutputStreamPoller poller,
graph.AddOutputStreamPoller("out")); graph.AddOutputStreamPoller("out"));
RETURN_IF_ERROR(graph.StartRun({})); MP_RETURN_IF_ERROR(graph.StartRun({}));
``` ```
5. The example then creates 10 packets (each packet contains a string "Hello 5. The example then creates 10 packets (each packet contains a string "Hello
@ -93,9 +93,9 @@
```c++ ```c++
for (int i = 0; i < 10; ++i) { for (int i = 0; i < 10; ++i) {
RETURN_IF_ERROR(graph.AddPacketToInputStream("in", MakePacket<std::string>("Hello World!").At(Timestamp(i)))); MP_RETURN_IF_ERROR(graph.AddPacketToInputStream("in", MakePacket<std::string>("Hello World!").At(Timestamp(i))));
} }
RETURN_IF_ERROR(graph.CloseInputStream("in")); MP_RETURN_IF_ERROR(graph.CloseInputStream("in"));
``` ```
6. Through the `OutputStreamPoller` object the example then retrieves all 10 6. Through the `OutputStreamPoller` object the example then retrieves all 10