Farzad Sadeghi

Results 39 comments of Farzad Sadeghi

I'm having the same problem. I tried alacritty and st with/without tmux. I got a messed up status line in alacritty with and without tmux. It doesn't happen with st.

After the deprecation the python pipe will remain inside bruiser. I have future plans for that.

for the wasm side of things, luatablegen is fine now,i.e. i finally decided to let Lua handle the memory allocation and deallocation for the objects. I just register the user...

i changed cgrep's makefile to use pch. the speed difference is noticeable but kinda underwhelming. at least, in cgrep's case, the big bottleneck is linking.

I did try the virtual destructor, it still keeps raising the same assert. actually the above code was kinda a minimal source version of the original code. The original piece...

in the original code i have a vector being added in, but like i said, i tried it without that, it literally just adds a root node and then just...

ctor: ```c++ RootPointer = Doc.NewElement("mutagen:Report"); RootPointer->SetAttribute("xmlns:mutator", "http://www.w3.org/2001/XMLSchema"); ``` dtor: ```c++ Doc.InsertEndChild(RootPointer); ``` other stuff: in the header: ```c++ virtual void AddNode(void) = 0; ``` in the source: DoomedStrains is vector...

we use `__clang__major__` to decide which version we are building against. that's how we can support as many version as we do. the errors are caused because either `__clang__major__` is...

can you try something for me please? make sure you use clang++ as compiler and not g++. somethign like this: `cmake ../ -DUSE_MONOLITH_LIBTOOLING=ON -DCMAKE_CXX_COMPILER=clang++`. let me know if the build...

was just gonna say this works: ```Dockerfile FROM archlinux:base-devel-20210725.0.29770 RUN pacman -Syu --noconfirm RUN pacman -S --noconfirm wget cmake git gnupg llvm-libs llvm openmp clang RUN git clone https://github.com/bloodstalker/cgrep \...