In Window.hpp line 359 function references itself due to missing columns leading to "infinite Recursion" warning under clang 12.
Possible Fix:
SetClipboardText(text.c_str()); -> ::SetClipboardText(text.c_str());
Similar problem with the function below.