mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 13:10:31 -04:00
28 lines
440 B
Text
28 lines
440 B
Text
--- pdns/logger.cc.orig Fri Feb 11 12:49:28 2005
|
|
+++ pdns/logger.cc Fri Feb 11 12:51:16 2005
|
|
@@ -131,6 +131,25 @@
|
|
return *this;
|
|
}
|
|
|
|
+Logger& Logger::operator<<(long i)
|
|
+{
|
|
+ ostringstream tmp;
|
|
+ tmp<<i;
|
|
+
|
|
+ *this<<tmp.str();
|
|
+
|
|
+ return *this;
|
|
+}
|
|
+
|
|
+Logger& Logger::operator<<(unsigned long i)
|
|
+{
|
|
+ ostringstream tmp;
|
|
+ tmp<<i;
|
|
+
|
|
+ *this<<tmp.str();
|
|
+
|
|
+ return *this;
|
|
+}
|
|
|
|
Logger& Logger::operator<<(ostream & (&)(ostream &))
|
|
{
|