↧
Comment by HolyBlackCat on How to declare static constexpr variable in C++?
Yes, you need to move it before the array.
View ArticleComment by HolyBlackCat on clang compiler intermediate results
The AST can be dumped in JSON form too. But I also recommend using libclang and not bothering to parse it.
View ArticleComment by HolyBlackCat on C++ log method capturing source line with variadic...
The first argument should be a format_string<Args...> to enable compile-time format string checking. And then you just inherit from format_string and add the default source_location argument to...
View ArticleComment by HolyBlackCat on Multiple namespaces overloaded operator
Using using namespace to import an operator is unreliable, because it brings it to the common enclosing namespace of yours and the one you're importing, which makes it prone to shadowing by other...
View ArticleComment by HolyBlackCat on Is part of youtube-api search server broken?
Please don't add [tags] to the title. We already have the actual tags.
View Article