Results 803 comments of Julian Rohrhuber

> > Maybe for a start, the backend should only call doesNotUnderstandAbout in a class that has it implemented (NOT inherited)? > > That would mean classes that inherit from...

It is a double dispatch, so the scheme used in`performUnaryOpFunction` could be applied.

I'd like to boost this issue, does anyone know how to solve it? This potentially minor fix would improve the state of literate programming by a large step.

If anyone happens to have a little time to fix this one before its tenth birthday, it would be happy I think!

@miguel-negrao this is useful to know! Optimally, the function I would look out for would do all the three things. As a start, it could do the first and second,...

The closest is probably `makeValid` ```haskell makeValid :: FilePath -> FilePath makeValid "" = "_" makeValid path | isPosix = map (\x -> if x == '\0' then '_' else...

I don't quite understand what you mean.

So I now did my build (in a new folder) with ``` cmake --std=c++14 -DCMAKE_PREFIX_PATH=`brew --prefix qt5` .. ``` it worked, but didn't change the error on `cmake --build ....

Thanks, I had completely forgotten. This is now how I tried: ``` cmake -DCMAKE_CXX_FLAGS="--std=c++14 -Boost_INCLUDE_DIR=/usr/local/Cellar/boost/1.84.0_1" -DSYSTEM_BOOST=ON -Boost_INCLUDE_DIR=/usr/local/Cellar/boost/1.84.0_1 -DCMAKE_PREFIX_PATH=`brew --prefix qt5` .. ``` then there were some warnings along the lines...