patch-src_matrix_cpp 324 B

1234567891011121314151617
  1. $OpenBSD: patch-src_matrix_cpp,v 1.1 2017/05/13 08:21:07 espie Exp $
  2. Index: src/matrix.cpp
  3. --- src/matrix.cpp.orig
  4. +++ src/matrix.cpp
  5. @@ -5,7 +5,9 @@
  6. #include "matrix.h"
  7. #include <stdlib.h>
  8. #ifndef NO_DEBUG
  9. -#include <iostream.h>
  10. +#include <iostream>
  11. +using std::cout;
  12. +using std::endl;
  13. #endif
  14. Matrix::Matrix(int s)