make filewatcher more robust

This commit is contained in:
2025-04-12 01:15:30 +03:00
parent c9205336c1
commit b63261a739
14 changed files with 543 additions and 287 deletions

View File

@@ -3,7 +3,7 @@
namespace minimal_lib {
int getNewValue(int x) {
static int value = 0;
static int value = 1;
value = value + x;
return value;
}