diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-28 20:20:19 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-28 20:21:23 +0200 |
commit | 4c285f9e1a76aee5de16deb256f939823f554bfc (patch) | |
tree | 8ad0e1a750944ce779f3af36757942094d2ae783 /Kernel/Makefile | |
parent | 933cd3848f3f791e57fc788bac67dc92957e90e0 (diff) | |
download | serenity-4c285f9e1a76aee5de16deb256f939823f554bfc.zip |
AK: Add Vector(std::initializer_list<T>) constructor.
This allows us to construct a Vector from an initializer list like so:
Vector<Object> objects = { object1, object2, object3 };
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 8579d3bf38..cd90d8c48a 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -92,7 +92,7 @@ OBJS = $(CXX_OBJS) Boot/boot.ao KERNEL = kernel CXXFLAGS += -ffreestanding -mregparm=3 -mno-80387 -mno-mmx -mno-sse -mno-sse2 -CXXFLAGS += -nostdinc++ -nostdlib -nostdinc +CXXFLAGS += -nostdlib DEFINES += -DKERNEL LDFLAGS += -Ttext 0x10000 -Wl,-T linker.ld -nostdlib |