$OpenBSD: patch-sqlplusint_const_string1_hh,v 1.1 2004/01/06 11:16:53 wilfried Exp $
--- sqlplusint/const_string1.hh.orig	2001-05-19 18:44:48.000000000 +0200
+++ sqlplusint/const_string1.hh	2004-01-04 23:25:47.000000000 +0100
@@ -47,7 +47,7 @@ public:
   const_reference operator[](size_type pos) const {return str_data[pos];} //:
   const_reference at(size_type pos) const //: 
   {
-    if (pos >= size()) throw out_of_range("");
+    if (pos >= size()) throw std::out_of_range("");
     else return str_data[pos];
   }
   
@@ -67,7 +67,7 @@ public:
 //! with_class = const_string
 
 //:
-inline ostream& operator << (ostream &o, const const_string &str) {
+inline std::ostream& operator << (std::ostream &o, const const_string &str) {
   return o << str.c_str();
 }
 
