]> www.ginac.de Git - ginac.git/blobdiff - ginac/exprseq_suppl.cpp
- Importing new files for packaging Debian GNU/Linux packages.
[ginac.git] / ginac / exprseq_suppl.cpp
index f4355d79a03baa820ed4ef6a8e2bf33ccbe3fcdd..5b5e0ca29b414120cbc50c5cc60aaff86ac0d3d7 100644 (file)
@@ -4,7 +4,7 @@
  *  not automatically generated. */
 
 /*
- *  GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2000 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
 #include "exprseq.h"
 #include "ex.h"
 
+#ifndef NO_GINAC_NAMESPACE
+namespace GiNaC {
+#endif // ndef NO_GINAC_NAMESPACE
+
 bool exprseq::info(unsigned inf) const
 {
     if (inf==info_flags::exprseq) return 1;
@@ -32,9 +36,12 @@ bool exprseq::info(unsigned inf) const
 
 ex & exprseq::let_op(int const i)
 {
-    ASSERT(i>=0);
-    ASSERT(i<nops());
+    GINAC_ASSERT(i>=0);
+    GINAC_ASSERT(i<nops());
 
     return seq[i];
 }
 
+#ifndef NO_GINAC_NAMESPACE
+} // namespace GiNaC
+#endif // ndef NO_GINAC_NAMESPACE