summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorLenny Maiorani <lenny@colorado.edu>2020-10-07 10:55:57 -0400
committerAndreas Kling <kling@serenityos.org>2020-10-08 09:54:56 +0200
commitfcee80dd69c8bef17d37b9e9bda2255b680019b9 (patch)
treea64662717bcd7e59c5e72e601064425afe7d2862 /AK
parent9eef5fc44668ae16e3eda55fdd5bfcc6df3234a1 (diff)
downloadserenity-fcee80dd69c8bef17d37b9e9bda2255b680019b9.zip
Formatter: Remove extraneous char definition
Formatter is specialized in the header file. The definition in the implementation file is extraneous and has no effect. Simply removing it so that there is no confusion.
Diffstat (limited to 'AK')
-rw-r--r--AK/Format.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/AK/Format.cpp b/AK/Format.cpp
index 9f8138ceb5..fece3b2e64 100644
--- a/AK/Format.cpp
+++ b/AK/Format.cpp
@@ -640,7 +640,6 @@ template struct Formatter<unsigned short, void>;
template struct Formatter<unsigned int, void>;
template struct Formatter<unsigned long, void>;
template struct Formatter<unsigned long long, void>;
-template struct Formatter<char, void>;
template struct Formatter<short, void>;
template struct Formatter<int, void>;
template struct Formatter<long, void>;