Glen Fraser

Results 110 comments of Glen Fraser

Looking forward to trying this on some large/slow files of our own! Thanks.

> @totalgee FYI if you want to try a pre-release build one is available [here](https://dev.azure.com/sonarsource/DotNetTeam%20Project/_build/results?buildId=61985&view=artifacts&pathAsName=false&type=publishedArtifacts). Thank you, I'm now running (what I assume is) a release version of SonarLint that...

Make the Chaiscript code you `eval` return a function (`fun() { /* do something */ }`), store that function (lambda) in a variable, and then execute the function whenever you...

Just a minor point: what about calling it `sq()` or `squared()`, so there is no ambiguity about the `sqr` being "square root"? Or alternatively (better?), there is already a `length2()`...

I've run into this problem before too, when I upgraded projects to GLM 0.9.9.0 or later. But if you add the definition (`GLM_FORCE_CTOR_INIT`) to your project compile flags, then it...

Just a side note -- I've used the very good PCG random generator (http://www.pcg-random.org or https://github.com/imneme/pcg-cpp) in Cinder projects, when I needed random generation that was fast and produced the...

I should clarify that it doesn't act the same as caps-lock, in that typed letters *don't* come out uppercase. But it *does* act as though shift were down for the...

This is **not** to do with ImGui, after all. If I write a minimal Cinder app and just overload `keyDown()` and `keyUp()`, I can see the problem. Just print a...

Could this be related to https://discourse.libcinder.org/t/cant-type-in-the-imgui-sample-linux/615 (since you're also on Linux)? Or maybe not... I'm using macOS and finding lots of weird things with the InputText (Multiline) widget. It often...