Justin Riddell

Results 13 comments of Justin Riddell

@vitaut This issue should be fixed by #3955

This is intended behaviour Unfortunately, it looks like msvc doesn't print the helpful stuff that gcc or clang would in the error message: ``` /opt/compiler-explorer/libs/rangesv3/trunk/include/range/v3/view/view.hpp:127:13: note: candidate function [with Rng...

Have you got `#include "tracy/Tracy.hpp"` in your includes Have you got `ZoneScoped;` somewhere I needed both of these before it worked for me

Will take another look at this, looks like earlier versions of libc++ etc. didn't have library support for the `std::input_iterator` concept even in c++20 mode. I had been compiling using...

Thanks for the feedback, have made the changes you suggested and rebased, hope it's ok now, thanks!

@Mixaill hi, what exactly is the issue and where is it known? Is it an issue with ninja, cmake, the modules implementation, a combination?

@hartib if you change to libstdc++ you get ``` /opt/compiler-explorer/gcc-13.2.0/lib/gcc/x86_64-linux-gnu/13.2.0/../../../../include/c++/13.2.0/type_traits:1048:21: error: static assertion failed due to requirement 'std::__is_complete_or_unbounded(std::__type_identity{})': template argument must be a complete class or an unbounded array 1048...

> @Arghnews, do you plan to update this PR or shall we close it for now (can be reopened later)? @vitaut Hi, sorry been busy and now I'm on holiday...

Hi, Reworked this so that now fmtlib will format `_BitInt`s up to 128 bits Uses wider formatter ie. integer types are widened to 64bit if

> [Godbolt](https://godbolt.org/z/5PnPj5d8c) As a workaround, change to `&buffer[0]` or `static_cast(buffer)` there it works fine @nlsweet