File: 06_remove_doc_matrix.patch

package info (click to toggle)
eigen3 3.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,492 kB
  • sloc: cpp: 151,572; ansic: 75,396; fortran: 24,137; sh: 971; python: 244; javascript: 205; makefile: 42
file content (13 lines) | stat: -rw-r--r-- 600 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Remove the line, which causes unreproducible builds
Author: Anton Gladky <gladk@debian.org>
Last-Update: 2015-06-18
Index: eigen3/doc/snippets/Matrix_resize_int_int.cpp
===================================================================
--- eigen3.orig/doc/snippets/Matrix_resize_int_int.cpp
+++ eigen3/doc/snippets/Matrix_resize_int_int.cpp
@@ -6,4 +6,4 @@ m.resize(3,2);
 cout << "here's the 3x2 matrix m:" << endl << m << endl;
 cout << "now let's resize m to size 2x2. This is NOT a conservative resizing, so it becomes uninitialized:" << endl;
 m.resize(2,2);
-cout << m << endl;
+