Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2634 from JinShil/refactor_object
Browse files Browse the repository at this point in the history
Refactor object.d: Move __cmp and __equals to rt
merged-on-behalf-of: unknown
  • Loading branch information
dlang-bot committed Jun 17, 2019
2 parents c901b2a + 8d19a51 commit d385cda
Show file tree
Hide file tree
Showing 7 changed files with 456 additions and 418 deletions.
3 changes: 3 additions & 0 deletions mak/COPY
Expand Up @@ -403,4 +403,7 @@ COPY=\
$(IMPDIR)\core\sys\windows\wtsapi32.d \
$(IMPDIR)\core\sys\windows\wtypes.d \
\
$(IMPDIR)\rt\array\comparison.d \
$(IMPDIR)\rt\array\equality.d \
\
$(IMPDIR)\etc\linux\memoryerror.d
3 changes: 3 additions & 0 deletions mak/SRCS
Expand Up @@ -451,6 +451,9 @@ SRCS=\
src\rt\tracegc.d \
src\rt\unwind.d \
\
src\rt\array\comparison.d \
src\rt\array\equality.d \
\
src\rt\backtrace\dwarf.d \
src\rt\backtrace\elf.d \
src\rt\backtrace\macho.d \
Expand Down
7 changes: 7 additions & 0 deletions mak/WINDOWS
Expand Up @@ -55,6 +55,7 @@ copydir: $(IMPDIR)
mkdir $(IMPDIR)\core\sys\solaris\sys
mkdir $(IMPDIR)\core\sys\windows
mkdir $(IMPDIR)\etc\linux
mkdir $(IMPDIR)\rt\array

copy: $(COPY)

Expand Down Expand Up @@ -1186,3 +1187,9 @@ $(IMPDIR)\core\sys\windows\wtypes.d : src\core\sys\windows\wtypes.d

$(IMPDIR)\etc\linux\memoryerror.d : src\etc\linux\memoryerror.d
copy $** $@

$(IMPDIR)\rt\array\comparison.d : src\rt\array\comparison.d
copy $** $@

$(IMPDIR)\rt\array\equality.d : src\rt\array\equality.d
copy $** $@

0 comments on commit d385cda

Please sign in to comment.