Skip to content

Commit

Permalink
In the cpp client, fix a compilation issue with optional definitions …
Browse files Browse the repository at this point in the history
…missing from table.cc. (deephaven#2914)
  • Loading branch information
jcferretti authored Oct 3, 2022
1 parent d8f0c11 commit e6c7d64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cpp-client/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Building the C++ client from a base Ubuntu 20.04 image
# Building the C++ client from a base Ubuntu 20.04 or 22.04 image

These instructions show how to install and run the Deephaven C++ client, its dependencies,
and its unit tests. We have tested these instructions in Ubuntu 20.04 with the default
and its unit tests. We have tested these instructions in Ubuntu 20.04 and 22.04 with the default
C++ compiler and tool suite (cmake etc).

1. Start with an Ubuntu 20.04 install
1. Start with an Ubuntu 20.04 or 22.04 install

2. Get Deephaven running by following the instructions here: https://deephaven.io/core/docs/how-to-guides/launch-build/

Expand Down
2 changes: 2 additions & 0 deletions cpp-client/deephaven/client/src/table/table.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
#include "deephaven/client/container/row_sequence.h"
#include "deephaven/client/utility/utility.h"

#include <optional>

using deephaven::client::chunk::AnyChunk;
using deephaven::client::chunk::BooleanChunk;
using deephaven::client::chunk::ChunkMaker;
Expand Down

0 comments on commit e6c7d64

Please sign in to comment.