andre2007

Results 150 comments of andre2007

@LaurentTreguier to be very clear, what you have done with DLS is one of the greatest part within the environment. With DLS you can add to a naked Intellij/Visual Studio...

I just saw pr https://github.com/atilaneves/dpp/pull/262 and now think about wheter an argument `--accept-macros=foo,bar` would solve the issue better. There is a small list of macros which I need. Beeing able...

While trying to access Azure Storage API (C++) I receive and error: `Could not find namespaceless 'vector::iterator' in type 'storage_type::iterator'` Is this also related to the issue `#include ` is...

@FlightBlaze your work is very appreciated It looks fresh and open minded A remark from my side. The current site has a color scheme which is also used on various...

To test this behavior I created a version of dub which writes a log file every time dub is called ```d int main(string[] args) { import std.datetime.systime; import std.stdio: File;...

@tsbockman While it isn't a real solution, you can disable the compile time checks by creating a small batch/bash script like this: ```batch @ECHO OFF IF NOT "%DFLAGS%" == "-o-"...

I would prefer proposal 2. It looks reasonable. If really needed, proposal 3 could be added in future on top.

There is also a pr to implement the check as dmd compiler warning https://github.com/dlang/dmd/pull/11553

```dub test``` has several effects: - version unittest is set active - unittest blocks (``` unittest{ asset(true == true); } ```) are enabled In your application code you need to...

If my understanding is correct, with this pr it will be a deprecation warning also with DMD https://github.com/dlang/dmd/pull/8429