Details
-
Bug
-
Status: Closed (View Workflow)
-
Trivial
-
Resolution: Fixed
-
1.1.3
-
None
-
2018-06
Description
In the C++ documentation there is an error in the ColumnStoreDriver examples.
Currently:
...
|
int main(void) |
{
|
ColumnStoreDriver* driver = nullptr;
|
try { |
...
|
should be:
...
|
int main(void) |
{
|
mcsapi::ColumnStoreDriver* driver = nullptr;
|
try { |
...
|