Changeset 7877
- Timestamp:
- 02/28/08 18:37:17
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/releases/3.1/gnuradio-core/src/lib/general/gr_test.cc
r6044 r7877 1 1 /* -*- c++ -*- */ 2 2 /* 3 * Copyright 2006 Free Software Foundation, Inc.3 * Copyright 2006,2008 Free Software Foundation, Inc. 4 4 * 5 5 * This file is part of GNU Radio … … 139 139 } 140 140 } 141 //Now copy input to output until lmax ninputs or max noutputs is reached141 //Now copy input to output until max ninputs or max noutputs is reached 142 142 int common_nports=std::min(ninputs,noutputs); 143 if(d_sizeof_output_item==d_sizeof_input_item) ;143 if(d_sizeof_output_item==d_sizeof_input_item) 144 144 for (int i = 0; i < common_nports; i++) 145 145 {
