diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-05-30 23:07:06 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-06-02 01:58:34 +0200 |
| commit | 8041d3697efb5eddef2c6e693248842ca0139590 (patch) | |
| tree | 5f85a176c0debe2dabab2b52f4b42ac309951567 /arch/dummy/arch_plots.cpp | |
| parent | 0df4e501aee0eeaec61217312eddddc077ca53a7 (diff) | |
adds v1 pop charts (wip)python_server_client
Diffstat (limited to 'arch/dummy/arch_plots.cpp')
| -rw-r--r-- | arch/dummy/arch_plots.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/dummy/arch_plots.cpp b/arch/dummy/arch_plots.cpp index 3631339..ba3dfaf 100644 --- a/arch/dummy/arch_plots.cpp +++ b/arch/dummy/arch_plots.cpp @@ -1,2 +1,3 @@ -std::array<const char *, 0> g_arch_traces; -std::array<Plot, 0> g_arch_plots; +std::vector<Trace> g_arch_traces = {}; +std::vector<Plot> g_arch_plots = {}; +std::vector<PlotStacked> g_arch_plots_stacked = {}; |
