Commit graph

12146 commits

Author SHA1 Message Date
anonymous
d648f9320e XREF_PACK -> REF (sed)
Done by:

from='\$\(XREF_PACK\s+([^(),]*),\s*([^(),]*),\s*([^(),]*)\)'
to='$(REF \3, std,\1,\2)'
(find . -type f -name "*.d" -print0; \
    find . -type f -name "*.dd" -print0) | \
xargs -0 sed -i -r "s/$from/$to/g"
2016-05-27 21:32:46 +02:00
anonymous
764caefa36 XREF -> REF (sed)
Done by:

(find . -type f -name "*.d" -print0; \
    find . -type f -name "*.dd" -print0) | \
xargs -0 sed -i -r \
    's/\$\(XREF\s+([^(),]*),\s*([^(),]*)\)/$(REF \2, std,\1)/g'
2016-05-27 21:32:46 +02:00
Martin Nowak
dbc30e664e Merge pull request #4353 from schveiguy/fix15941
Fix issue 15941 -- rbtree no longer supports classes
2016-05-27 18:19:44 +02:00
Dmitry Olshansky
a207b27056 Merge pull request #4348 from mathias-lang-sociomantic/commaexp
Do not rely on the result of a comma expression
2016-05-27 18:40:27 +04:00
Mathias Lang
7f53fdfec0 Do not rely on the result of a comma expression
Also add `pragma(inline, true)` to ensure this function stays inlined.
2016-05-27 15:54:26 +02:00
Steven Schveighoffer
bf1dde7ac7 Fix issue 15941 -- rbtree no longer supports classes 2016-05-27 08:19:08 -04:00
Dmitry Olshansky
2c0b7d24e3 Merge pull request #4354 from wilzbach/newlines_algorithm
remove whitespace in ddoc output of std/algorithm
2016-05-27 14:37:26 +04:00
Dmitry Olshansky
519ff9fa46 Merge pull request #4365 from joakim-noah/uni_imports
std.uni: use selective imports and document module-scope imported symbols
2016-05-27 13:53:00 +04:00
Dmitry Olshansky
b173b32969 Merge pull request #4361 from joakim-noah/imports
std.math and std.stdio: use more selective imports
2016-05-27 13:26:46 +04:00
Vladimir Panteleev
cae4923372 Merge pull request #4369 from wilzbach/deprecate_wiki
remove the deprecated wiki macros
2016-05-27 08:19:55 +03:00
Sebastian Wilzbach
357e02a4a9 remove unused TEXTWITHCOMMAS macro 2016-05-27 05:52:27 +02:00
Sebastian Wilzbach
18b8abf60a remove the deprecated wiki macros 2016-05-27 05:52:23 +02:00
Sebastian Wilzbach
b89adfc3b0 std.curl: document public methods 2016-05-27 05:13:16 +02:00
Robert Schadek
0d33ee0706 Merge pull request #4298 from CyberShadow/fork-nogc
std.process: Enforce nothrow/@nogc in forks
2016-05-26 19:02:13 +02:00
Joakim
19e5af264f std.uni: use selective imports and document symbols imported at module scope, checked with ddmd 2016-05-26 04:20:49 +05:30
Joakim
11d3bf6b57 For std.math and std.stdio, use more selective imports and document the current symbols imported at the module level, done by checking with ddmd. 2016-05-26 01:11:11 +05:30
Jack Stouffer
2c047f1dd7 Range-ified std.string.isNumeric 2016-05-25 10:32:58 -04:00
Sebastian Wilzbach
5f7a4ca7c5 add top-level example for binary heap 2016-05-25 16:02:48 +02:00
Dmitry Olshansky
088f7bfe73 Merge pull request #4356 from wilzbach/fix_format_uni
fix table formatting in uni.d
2016-05-25 17:59:41 +04:00
Robert Schadek
53fa4b2001 Merge pull request #4360 from CromFr/master
Wrong exception message in std.json
2016-05-25 13:26:33 +02:00
Thibaut CHARLES
210d0f70ab Wrong exception message std.json 2016-05-25 12:10:36 +02:00
Sebastian Wilzbach
614294cd70 remove whitespace in ddoc output of std/algorithm 2016-05-25 03:57:01 +02:00
Sebastian Wilzbach
f2edef56ea fix table formatting in uni.d 2016-05-25 03:53:03 +02:00
Robert Schadek
2f124dee5d Merge pull request #4330 from wilzbach/example_array
add module example to std.container.array
2016-05-24 16:59:49 +02:00
Andrei Alexandrescu
b94026470d Merge pull request #4307 from JackStouffer/allocator
Move Ternary from std.experimental.allocator.common to std.typecons
2016-05-24 10:29:23 -04:00
Jack Stouffer
b7165c04bc Move Ternary from std.experimental.allocator.common to std.typecons 2016-05-24 10:27:10 -04:00
Andrei Alexandrescu
8f24656082 Merge pull request #4349 from nordlow/findSplit-opAssign
Fix Issue 15918
2016-05-24 09:04:48 -04:00
Per Nordlöw
54f05971e4 Fix Issue 15918 2016-05-24 09:37:36 +02:00
Vladimir Panteleev
38a6370788 Merge pull request #4303 from wilzbach/mref_phobos
use mref macro instead of link2
2016-05-24 03:12:08 +03:00
Vladimir Panteleev
9f827189ff Merge pull request #4309 from Hackerpilot/clarify_variant_test
Fix delegates in unit test so that they actually return void and do nothing
2016-05-24 02:29:43 +03:00
Hackerpilot
e702b0ec99 Fix the behavior of a unit test 2016-05-23 14:04:45 -07:00
Jacob Carlborg
b29fb64357 Set deployment target to the minimum supported version of OS X
Since the update to use native TLS on OS X the minimum deployment
target is now OS X Lion (10.7).
2016-05-23 21:59:17 +02:00
Robert Schadek
836a905833 Merge pull request #4312 from wilzbach/public_document_algorithms
std.algorithms: document public methods
2016-05-23 19:15:23 +02:00
Sebastian Wilzbach
66099f1640 add module example to std.container.array 2016-05-23 18:22:34 +02:00
David Nadlinger
4991b82304 Merge pull request #4337 from tsbockman/issue_16026
Fix issue 16026: std.math.frexp!float() wrong for very small subnormals
2016-05-22 22:07:35 +01:00
anonymous
b391486693 fix issue 16054 - can break immutable with std.typecons.Rebindable 2016-05-22 00:33:19 +02:00
Brian Schott
7b08e86d83 Merge pull request #4311 from JackStouffer/allocator3
Remove commented out code and redundant comments from std.experimental.allocator
2016-05-20 14:15:18 -07:00
Dmitry Olshansky
e02b287ff0 Merge pull request #4339 from JackStouffer/bigint2
Remove auto decoding in bigint's ctor
2016-05-20 23:40:00 +04:00
David Nadlinger
acafd848d8 Merge pull request #4340 from BBasile/dscanner-ini
update dscanner to alpha 6
2016-05-20 11:38:33 +01:00
Jack Stouffer
9f9c5a9759 Defeat auto decoding in bigint's ctor 2016-05-19 10:04:22 -04:00
Basile Burg
2d45ef33f5 update dscanner to alpha 6 2016-05-19 12:09:11 +02:00
Brian Schott
88966f953c Merge pull request #4333 from BBasile/issue-15991
fix issue 15991 - std.datetime.StopWatch is not @nogc
2016-05-18 14:46:38 -07:00
Brian Schott
0ed7fe14be Merge pull request #4338 from shrub77/patch-1
Updated examples for FileLogger: Logger name parameter has been removed
2016-05-18 13:59:04 -07:00
Rishub Nagpal
abfd50c473 Updated examples for FileLogger: Logger name parameter has been removed 2016-05-18 15:55:38 -04:00
Vladimir Panteleev
1fad3c54aa Merge pull request #4335 from jacob-carlborg/issue_16036
Fix #16036: isEmail returns invalid for any email with EmailStatusCod…
2016-05-18 20:26:00 +03:00
Jacob Carlborg
9fd3646ae6 Fix issue 16036 - isEmail returns invalid for any email with EmailStatusCode.none 2016-05-18 16:21:58 +02:00
Daniel Murphy
2b5f0e0d4d Merge pull request #4332 from joakim-noah/android
Fix Android regressions
2016-05-18 22:18:43 +10:00
tsbockman
a6a1957be3 Fix issue 16026: std.math.frexp!float() wrong for very small subnormal values 2016-05-18 03:37:46 -07:00
Steven Schveighoffer
35b92c6dd6 Merge pull request #4334 from wilzbach/patch-2
update issue link to issues.dlang.org
2016-05-17 09:45:25 -04:00
Sebastian Wilzbach
e053288672 update issue link to issues.dlang.org 2016-05-17 09:40:29 +03:00