Fixed building on Windows

This commit is contained in:
Bartek Kryza
2023-06-15 22:28:29 +02:00
parent 8c4e48d511
commit 94b1d51ca8
2 changed files with 8 additions and 2 deletions

View File

@@ -28,6 +28,13 @@ namespace clanguml::common::generators {
class progress_indicator {
public:
struct progress_state {
explicit progress_state(size_t i, size_t p, size_t m)
: index{i}
, progress{p}
, max{m}
{
}
size_t index;
size_t progress;
size_t max;