From 764526f4e1c470b53704e00a84e0104ca2e2a85f Mon Sep 17 00:00:00 2001 From: Scott Moynes Date: Sun, 15 Sep 2002 00:18:04 +0000 Subject: [PATCH] fixed a build error on gcc 3 and without XFT defined. --- util/xftlsfonts.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/xftlsfonts.cc b/util/xftlsfonts.cc index 94e47d5d..bd2313fe 100644 --- a/util/xftlsfonts.cc +++ b/util/xftlsfonts.cc @@ -7,6 +7,8 @@ const char *VERSION = "1.0"; #ifndef XFT #include +using std::cout; +using std::endl; int main(int, char **) { cout << NAME << " version " << VERSION << endl; -- 2.34.1