Arun
Arun
I'm on dstep master (c4fac0c) and it appears to not translate the pragma pack attributes. ```c #include #include typedef uint64_t UINT64; typedef int64_t __int64; typedef int64_t LONGLONG; typedef uint32_t DWORD;...
Unable to pass CLI arguments with negative values. ```d import std.stdio; import darg; private struct Options { @Option("help", "h") @Help("Prints this help.") OptionFlag help; @Option("threshold", "t") @Help("Threshold.") int threshold; }...
`std.experimental.all` is a nice way to import all the symbols in a single statement. But doing so when darg is imported results in the below compiler error. ``` src\app.d(58,6): Error:...
At the moment, `HTTPServerResponseImpl::sendFile` uses `StreamCopied::copyStream` which in turn uses intermediate buffer copies. This is inefficient on Linux as the buffers are copied from user space to user space and...
``` $ cmake -DCMAKE_INSTALL_PREFIX=$SETUP/librdkafka-1.9.0 -DWITH_SASL=ON -DWITH_SSL=ON -DWITH_CURL=OFF \ -DENABLE_LZ4_EXT=OFF -DRDKAFKA_BUILD_EXAMPLES=ON -DRDKAFKA_BUILD_TESTS=ON .. /usr/bin/c++ -rdynamic examples/CMakeFiles/producer_cpp.dir/producer.cpp.o -o examples/producer_cpp src-cpp/librdkafka++.a src/librdkafka.a -lm /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so -lsasl2 -ldl && : /usr/bin/ld: src/librdkafka.a(rdkafka.c.o): in...
First attempt to renew PR #1840. I respect and appreciate the work of the original author. However I think that this PR explains a trivial difference between C++ and D....
It would be good to have a feature that aligns the members in the following way. This makes the code easy to read. ```d struct Data { SomeBigStructName structName; FieldOne...
Mercurial repos store files with extension `.d` as well and when running dfmt recursively, it attempts to parse and format these files. ``` ./minutia-plotter/.hg/store/data/sample/7-latent.jpg.d(58:60)[error]: Expected `;` instead of `` ```...
## Information AsciidocFX Version: 1.7.3 OS: Windows 64 bit ## Something.adoc ``` == Introduction This is an asciidoc document. [plantuml, Text, png] ---- include::file1.puml[] ---- ``` ## file1.puml ``` @startuml...