Is the deprecation process used for Phobos and druntime code documented
somewhere? I.e. how long after a deprecation is a symbols removed and so on.
--
/Jacob Carlborg
On Tue, 24 Feb 2015 06:29:33 +, Rory wrote:
> Is there a way I can stop "current" from being optimized out without
> using "volatile"?
but why do you need this? just use `atomicLoad` to get shared variable
value, it will do the right caching.
signature.asc
Description: PGP signature
Hi,
Is there a way I can stop "current" from being optimized out
without using "volatile"?
The compiler is suggesting I replace "volatile" with
"synchronized" but I don't want it synchronized?
Would a memory barrier work?
shared n = new int(value);
for (;;) {
volatile auto current = payloa
On Sunday, February 22, 2015 17:45:48 Ali Çehreli via Digitalmars-d-learn wrote:
> On 02/22/2015 03:17 PM, Martin Nowak wrote:
> > On Thursday, 19 February 2015 at 22:07:55 UTC, stewarth wrote:
> >> I've gone with "static this()" approach and it works.
> >
> > You should use shared static this to i
On Monday, February 23, 2015 09:12:33 rumbu via Digitalmars-d-learn wrote:
> On Saturday, 21 February 2015 at 15:26:28 UTC, ketmar wrote:
> > On Sat, 21 Feb 2015 08:27:13 +, rumbu wrote:
> >
> >> My question was not how I do this, I know already. My question
> >> was if
> >> there is another wa
On Tuesday, 24 February 2015 at 00:20:45 UTC, Martin Nowak wrote:
On Monday, 23 February 2015 at 16:10:42 UTC, Andre wrote:
Curl has some issues with passwords containing special
characters
like the hash key (#).
I don't found any reference for this issue in curl and the D
wrapper hardly ad
On Monday, 23 February 2015 at 16:10:42 UTC, Andre wrote:
Curl has some issues with passwords containing special
characters
like the hash key (#).
I don't found any reference for this issue in curl and the D
wrapper hardly adds anything. You're sure it isn't an issue with
your program or ho
On 2/23/15 3:16 PM, "Nordlöw" wrote:
On Monday, 23 February 2015 at 19:24:32 UTC, Steven Schveighoffer wrote:
In answer to your question, RBNode should not be accessible direction
outside of RedBlackTree. But we don't have allocators inside of
Phobos, so I used the easiest thing I could for port
On Monday, 23 February 2015 at 19:24:32 UTC, Steven Schveighoffer
wrote:
In answer to your question, RBNode should not be accessible
direction outside of RedBlackTree. But we don't have allocators
inside of Phobos, so I used the easiest thing I could for
portability.
-Steve
Does this mean t
On 2/20/15 4:26 PM, "Nordlöw" wrote:
What's the policy on using GC or not in std.container.* ?
- std.container.Array uses malloc for its allocation but
- RedBlackTree.allocate() returns a: new RBNode!Elem*
Is this because RBNode* should be reachable outside of RedBlackTree or
is this a todo?
On Monday, 23 February 2015 at 17:47:54 UTC, Andre wrote:
Until now I didn't found out how to solve the issue excepting
changing
the password;)
In case I find the solution I will make a pull request.
Kind regards
André
On Monday, 23 February 2015 at 16:58:16 UTC, Marc Schütz wrote:
On Monday,
On 02/23/2015 09:47 AM, Andre wrote:
> In case I find the solution I will make a pull request.
I think Marc Schütz meant a pull request improving or fixing the
documentation.
Ali
Hi,
Curl has some issues with passwords containing special characters
like the hash key (#).
The password will not be accepted although it is correctly
set with the method setAuthencication("user", "pass1234#");
I know this is more a Curl issue than a DLang issue but it
is very frustrating and f
On 24/02/2015 1:58 a.m., novice2 wrote:
sorry - i cant find where i can post this.
bugtracker have no dlang.org product.
when i click to left menu "Standart Library - std - windows - charset"
then i have error "The requested URL /phobos/std_windows_charset.html
was not found on this server."
h
sorry - i cant find where i can post this.
bugtracker have no dlang.org product.
when i click to left menu "Standart Library - std - windows -
charset"
then i have error "The requested URL
/phobos/std_windows_charset.html was not found on this server."
On Mon, 23 Feb 2015 09:12:33 +, rumbu wrote:
> On Saturday, 21 February 2015 at 15:26:28 UTC, ketmar wrote:
>> On Sat, 21 Feb 2015 08:27:13 +, rumbu wrote:
>>
>>> My question was not how I do this, I know already. My question was if
>>> there is another way to safely call a non-const insta
On Saturday, 21 February 2015 at 15:26:28 UTC, ketmar wrote:
On Sat, 21 Feb 2015 08:27:13 +, rumbu wrote:
My question was not how I do this, I know already. My question
was if
there is another way to safely call a non-const instance
function on a
const object.
is there a way to been saf
17 matches
Mail list logo