Zartaj Majeed

Results 15 issues of Zartaj Majeed

bison 3.7.5 seems to print some counterexamples twice with -Wcounterexamples The output below is for a grammar provided by Christoph Grüninger on the help-bison mailing list asking for help with...

make install fails for out-of-source builds with this error ```bash make install-data-hook make[3]: Entering directory 'ugrep/build' mkdir -p ugrep/install/share/ugrep && \ cp -rf patterns ugrep/install/share/ugrep/ cp: cannot stat 'patterns': No...

`make install` fails with this error when building in an external directory outside the source tree ```bash make install-data-hook make[3]: Entering directory 'ugrep/build' mkdir -p ugrep/install/share/ugrep && \ cp -rf...

This minimal flex file with C++ and main options causes a compiler error ```lex /* cxxmain.l */ /* a minimal C++ flex file that gives an undeclared yylex compiler error...

Minimal changes for new logs service with single GetLogs API that has all the messages and types defined in logs.proto but only returns a dummy response for simple testing

This implements GetLogsV2 API. The main pieces are 1. The gRPC request handler in `src/server/pps/server/logsrequest.go` - This extracts the various fields of the `GetLogsV2Request` message and fills the backend handler...

Got this warning from gcc 13 for a C++ lexer when all warnings are enabled with -Wall ``` error: ‘virtual int yyFlexLexer::yylex()’ was hidden [-Werror=overloaded-virtual=] ``` Caused by the yylex...

Is there a way to add a field with RE2 named capture groups? ``` zq -Z '/total (?P\S+)/' -

community

A C++ raw string literal that spans more than one line gives an error The grammar file ``` 1 // rawstring.y 2 %% 3 start: %empty 4 %% 5 #include...