diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-16 02:39:16 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-16 02:39:16 +0200 |
commit | 33920df299620822cd9f95f9c7475d1e39a21e63 (patch) | |
tree | aeec0e4b4bb289c0f0a036d845033ee628e22a42 /LibC | |
parent | a082738f04e099b7200172a8742d9e1cbf6bb1c1 (diff) | |
download | serenity-33920df299620822cd9f95f9c7475d1e39a21e63.zip |
AK: Try to use StringViews more for substrings and splitting.
Diffstat (limited to 'LibC')
-rw-r--r-- | LibC/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/Makefile b/LibC/Makefile index dd2d7c839d..f6c209cfee 100644 --- a/LibC/Makefile +++ b/LibC/Makefile @@ -1,6 +1,7 @@ AK_OBJS = \ ../AK/StringImpl.o \ ../AK/String.o \ + ../AK/StringView.o \ ../AK/StringBuilder.o \ ../AK/FileSystemPath.o \ ../AK/StdLibExtras.o \ |