Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dip1000.mak
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ aa[std.path]=-dip25 # TODO
aa[std.process]=-dip1000
aa[std.random]=-dip1000
aa[std.signals]=-dip1000
aa[std.socket]=-dip1000
aa[std.socket]=-dip25
aa[std.stdint]=-dip1000
aa[std.stdio]=-dip25 # TODO
aa[std.string]=-dip1000
Expand Down
2 changes: 1 addition & 1 deletion posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ UT_D_OBJS:=$(addprefix $(ROOT)/unittest/,$(addsuffix $(DOTOBJ),$(D_MODULES)))
$(UT_D_OBJS): $(ALL_D_FILES)
$(UT_D_OBJS): $(ROOT)/unittest/%$(DOTOBJ): %.d
@mkdir -p $(dir $@)
$(DMD) $(DFLAGS) $(UDFLAGS) -c -of$@ $<
$(DMD) $(DFLAGS) $(UDFLAGS) $(aa[$(subst /,.,$(basename $<))]) -c -of$@ $<

ifneq (1,$(SHARED))

Expand Down
4 changes: 2 additions & 2 deletions std/uni.d
Original file line number Diff line number Diff line change
Expand Up @@ -2185,7 +2185,7 @@ public struct InversionList(SP=GcPolicy)
assert(set.byInterval.equal([tuple('A','E'), tuple('a','e')]));
-----------
*/
@property auto byInterval() scope
@property auto byInterval() scope return
{
return Intervals!(typeof(data))(data);
}
Expand Down Expand Up @@ -2795,7 +2795,7 @@ private:
// a random-access range of integral pairs
static struct Intervals(Range)
{
this(Range sp) scope
this(return scope Range sp) scope @trusted // FIXME
{
slice = sp;
start = 0;
Expand Down