Encapsulate obscure detail that lower numeric priority is higher queue priority
[clinton/bobotpp.git] / source / String.C
index 8d6e5eb..15f173c 100644 (file)
 
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #include "String.H"
 #include "Utils.H"
 
+#include <cstdlib>
 #include <cstring>
 #include <cctype>
 #include <sstream>
@@ -189,7 +190,7 @@ String::operator[](int i_) const
 
   if (i < 0 || my_string.length () < i) {
     std::cerr << "String index out of range\n";
-    exit(1);
+    std::exit(1);
   }
   return my_string[i];
 }