// File: tdtest14b.cpp // // This file will be compiled separately. // Other file used: tdtest14a.cpp // // Compiling this file and tdtest14b.cpp results // in a compile-time error. // #include "twodim14.h" void conv(TwoDimArray& A, TwoDimArray& B) { for (unsigned int i=0 ; i < 10 ; i++) { for (unsigned int j=0 ; j < 10 ; j++) { A[i][j] = (int) B[i][j] ; } } }