Andrej Mitrovic
b22a90eb9e
Fixes Issue 9336 - Format should work on shared address.
2013-01-25 19:44:16 +01:00
Alex Rønne Petersen
ca65b3701a
Merge pull request #1095 from dawgfoto/workaround9378
...
workaround Bug 9378
2013-01-24 00:20:29 -08:00
Hara Kenji
47d4757905
Merge pull request #1096 from 9rnsr/fix5933
...
Add workaround for bug 9382, which introduced by fixing bug 5933
2013-01-23 23:42:24 -08:00
k-hara
6502337a21
Add workaround for bug 9382, which introduced by fixing bug 5933
2013-01-24 14:28:49 +09:00
Martin Nowak
4a6af4e42e
workaround Bug 9378
...
- SHA1 asm is broken for PIC
2013-01-24 03:16:26 +01:00
Jonathan M Davis
2ca9e55a91
Merge pull request #1094 from AndrejMitrovic/Fix9373
...
Issue 9373 - Add deprecation messages to Phobos.
2013-01-22 19:39:20 -08:00
Andrej Mitrovic
aaa6854eb7
Fixes Issue 9373 - Add deprecation messages to Phobos.
2013-01-23 02:44:08 +01:00
Alex Rønne Petersen
c89b21e38f
Merge pull request #1089 from AndrejMitrovic/Fix7142
...
Issue 7142 - Implement field width for boolean formatting
2013-01-21 19:39:38 -08:00
Andrej Mitrovic
5057ca5404
Fixes Issue 7142 - Implement field width for boolean formatting.
2013-01-22 04:10:12 +01:00
Hara Kenji
1ec2e521b2
Merge pull request #1088 from AndrejMitrovic/Fix9269
...
Issue 9269 - Remove import to curl to avoid unittest build failure
2013-01-21 18:44:05 -08:00
Andrei Alexandrescu
27c81c985d
Merge pull request #1087 from 9rnsr/fix9199
...
Supplemental fix for Issue 9199 - Module level qualified functions should be rejected
2013-01-21 17:49:23 -08:00
Andrej Mitrovic
40d9ebcdfb
Fixes Issue 9269 - Remove import to curl to avoid unittest build failure.
2013-01-22 02:16:23 +01:00
k-hara
122b3b8e2f
fix Issue 9199 - Module level qualified functions should be rejected
...
`inout` had qualified the function itself, rather than its return type.
2013-01-22 09:48:17 +09:00
Hara Kenji
771b03b6e5
Merge pull request #1083 from NilsBossung/master
...
DDoc: remove stray "
2013-01-21 12:45:00 -08:00
Nils Boßung
6e233561a1
DDoc: remove stray "
2013-01-21 21:40:57 +01:00
Alex Rønne Petersen
8f85f6bdaa
Merge pull request #1081 from AndrejMitrovic/Fix6668
...
Issue 6668 - Avoid throwing collateral exceptions in std.conv.to
2013-01-21 00:23:08 -08:00
Andrej Mitrovic
88c2c81fbc
Fixes Issue 6668 - Avoid throwing collateral exceptions in std.conv.to
2013-01-20 17:30:17 +01:00
Andrei Alexandrescu
e9cb971002
Merge pull request #1079 from AndrejMitrovic/Fix5065
...
Issue 5065 - Format specifier must be '%s' for some types
2013-01-20 04:50:26 -08:00
Andrej Mitrovic
d6d12ffdc8
Fixes Issue 5065 - Format specifier must be %s for types which don't implement toString with a format specifier.
2013-01-19 03:11:06 +01:00
Alex Rønne Petersen
191241ff1a
Merge pull request #1078 from Poita/bug9350
...
Issue 9350 - findAdjacent unreachable code warning with infinite ranges
2013-01-18 15:34:50 -08:00
Peter Alexander
28b61cf68d
Added unittest for Issue 9350.
2013-01-18 18:31:50 +00:00
Peter Alexander
e7ccc0d45e
Issue 9350 - findAdjacent infinite range warning
...
Fix Issue 9350
http://d.puremagic.com/issues/show_bug.cgi?id=9350
2013-01-18 18:25:30 +00:00
Hara Kenji
c60f25edd3
Merge pull request #1077 from yebblies/issue6408
...
Fix Issue 6408 - Phobos fixes
2013-01-18 00:47:14 -08:00
Daniel Murphy
41a9f1fa05
Fix Issue 6408 - Phobos fixes
...
Do not use typeof(Type[0]) to get the element type of an array, use typeof(Type.init[0])
2013-01-18 19:10:16 +11:00
Alex Rønne Petersen
00c95c17d6
Merge pull request #1076 from complexmath/curl-fixes-01
...
Disable SSL cert validation in curl client
2013-01-17 12:38:47 -08:00
Sean Kelly
f2eb096913
updated HTTP client to work with hosts that have an unofficial SSL cert. This matches the behavior in the SMTP client.
2013-01-17 12:24:52 -08:00
Hara Kenji
86809da5e6
Merge pull request #863 from Dicebot/fully_qualif_typename
...
Implementation of fullyQualifiedTypename template that operates on raw t...
2013-01-17 06:21:56 -08:00
Dicebot
261b9d914b
fullyQualifiedName: Review comments adressed (AA key qualifiers, overall style)
2013-01-17 13:18:12 +02:00
Dicebot
e85aa4799d
fullyQualifiedName: created a single entry template, rearranged code to match new hierarchy
2013-01-16 18:11:48 +02:00
Dicebot
a26d6aa31f
fullyQualifiedName: Added inout handling, exclusive modifers shall not stack anymore, turned one of inner templates to CTFE function
2013-01-16 14:39:55 +02:00
Dicebot
0178c1a384
fullyQualifiedName: inout function support + removed possibility of exclusive qualifier combination in output
2013-01-16 13:41:16 +02:00
Dicebot
cc52042d0e
fullyQualifiedName: removed duplicate unittest lines
2013-01-16 13:41:16 +02:00
Dicebot
28faffe389
fullyQualifiedName update: fixed test suite build errors
2013-01-16 13:41:16 +02:00
Dicebot
5a8e303af3
fullyQualifiedName: function type handling improved
...
1) Added formatting for:
* Attributes
* Parameter storage classes
* Variadic arguments
* Function type qualifiers for delegates
* Function linkage
2) Unit tests were re-arranged and improved a bit
3) xformat -> format
2013-01-16 13:41:16 +02:00
Dicebot
5843503935
Implementation of fullyQualifiedTypename template that operates on raw types contrary to fullyQualifiedName which is tied to aliases to symbols
2013-01-16 13:41:16 +02:00
Alex Rønne Petersen
afe4ba151d
Merge pull request #1073 from 9rnsr/fix9317
...
Issue 9317 - ParameterStorageClassTuple reports errors for inout function
2013-01-15 15:24:27 -08:00
k-hara
dd42a75106
fix Issue 9317 - ParameterStorageClassTuple reports errors for inout function
2013-01-15 00:07:06 +09:00
Alex Rønne Petersen
248aaea04f
Merge pull request #1026 from Dicebot/patch-1
...
Update std/traits.d
2013-01-13 16:24:35 -08:00
Alex Rønne Petersen
2973b7ed2d
Merge pull request #1048 from Poita/bug8368
...
Issue 8368 - Insufficient constraints for sort
2013-01-13 16:21:47 -08:00
Alex Rønne Petersen
bdc959933c
Merge pull request #1070 from monarchdodra/9299
...
Fixes issue 9299 - std.algorithm.minPos of const(int)[]
2013-01-13 16:20:56 -08:00
Masahiro Nakagawa
604f5d5e9a
Merge pull request #1071 from jmdavis/cycle
...
Made cycle's DollarToken private.
2013-01-12 23:38:24 -08:00
jmdavis
9bab8393c3
Made cycle's DollarToken private.
...
There's no reason for anyone to use it directly, so it's better for it
to be private.
2013-01-12 22:51:35 -08:00
Alex Rønne Petersen
c1c7adec0c
Merge pull request #1065 from monarchdodra/repeatSlice
...
Provide slicing for Repeat
2013-01-12 08:50:29 -08:00
unknown
5afbfac8c5
Fixes issue 9299 - std.algorithm.minPos of const(int)[]
2013-01-12 14:30:25 +01:00
Andrei Alexandrescu
6996f434af
Merge pull request #1009 from monarchdodra/initializeAll
...
improvements to uninitializedFill && initializeAll
2013-01-11 07:55:04 -08:00
monarch dodra
7db6ba8cfd
whitespace
2013-01-11 16:12:27 +01:00
Alex Rønne Petersen
fa6131bb29
Merge pull request #1069 from monarchdodra/zipLockstep
...
Const fixes in Zip and Lockstep
2013-01-11 02:46:52 -08:00
Alex Rønne Petersen
e0ebb5efb3
Merge pull request #1068 from jmdavis/cycle
...
Add opSlice to Cycle.
2013-01-11 02:43:22 -08:00
Alex Rønne Petersen
1b5362390e
Merge pull request #1067 from dawgfoto/cleanupMakefile
...
cleanup OS detection
2013-01-11 02:31:12 -08:00
jmdavis
1ec00a35d8
Add opSlice to Cycle.
2013-01-11 00:05:16 -08:00