p-ranav / tabulate

Table Maker for Modern C++
MIT License
1.94k stars 138 forks source link

Where is RowStream{} #121

Open HP1324 opened 3 months ago

HP1324 commented 3 months ago

The readme file mentions RowStream{}to format the data with stream insertion, but RowStream identifier is undefined. Is there any header file that defines it, but I could not find. Or the feature is deperecated.

p-ranav commented 3 months ago

I see it in table.hpp:157 and in the single-header file version in tabulate.hpp:8812. There is also this sample.

Are you using a particular release or the latest master branch? The latest release is out of date; I will create a new release soon.

HP1324 commented 3 months ago

I have installed it using vcpkg manifest mode. and vcpkg.json's builtin-baseline is set to the latest commit.

derreisende77 commented 3 weeks ago

@HP1324 vcpkg uses the release tag 1.5 from 2023 which does not include RowStream. RowStream was added with commit 6b4f643 in 2024 but no new release tag so far has been created. Therefore vcpkg remains the old 2023 version.

derreisende77 commented 3 weeks ago

@p-ranav Could you create a new release 1.6 so vcpkg port could use the newest version?