Peter Moran

Results 22 comments of Peter Moran

I could help with this if pointed in a good direction to start.

Would fixing this be as simple as removing the use of `{{{triple braces}}}` and `{{! brace comments}}` from files in https://github.com/badlydrawnrob/anki/tree/8a1b6f75bad54131a58485538a0b217966238d75/source/themes/cards?

Unfortunately I haven't looked into it since it does not impact performance. Last I looked, it seemed like it might be a problem with the formatting of the pipeline string...

I believe I have the same issue, on Mac OSX Mojave ``` bossac --info --port /dev/tty.usbmodem141201 --erase --write --verify --boot --reset firmware.bin Device : ATSAME70x21 Version : v1.2 Jan 6...

Sorry, my example was bad. I did not mean for the map to be `constexpr`. Here's a better example: ```cpp #include #include #include int main() { frozen::unordered_map fruits = {...

With a little modification of the code this example is possible. In particular, it just needs a version of `at` and `lookup` that does not return a const reference.

Here's some rough example code https://github.com/peter-moran/frozen/pull/1

If it helps to explain why I am interested in this: I work on a lot of embedded projects where I would love to have a map that does not...

I think the problem you are having is that the size of the container is a template parameter, which makes it part of the type information. The map has to...