Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 50043
Collapse All | Expand All

(-)iscan-1.13.1.orig/frontend/file-selector.cc (-2 / +5 lines)
Lines 163-171 Link Here
163
  int size = 1;			// terminating { 0 } element
163
  int size = 1;			// terminating { 0 } element
164
  for (int i = 0; 0 != _format[i].name; ++i)
164
  for (int i = 0; 0 != _format[i].name; ++i)
165
    ++size;
165
    ++size;
166
  _fmt = new (const format *)[size];
166
  // _fmt = new (const format *)[size];
167
				// okay, so we may waste a few
167
				// okay, so we may waste a few
168
168
  typedef const format *t1;
169
  _fmt = new t1[size];
170
  
171
  
169
  int cnt = 0;
172
  int cnt = 0;
170
  int len = 0;
173
  int len = 0;
171
  for (int i = 0; i < size - 1; ++i)
174
  for (int i = 0; i < size - 1; ++i)
(-)iscan-1.13.1.orig/lib/cfilebuf.cc (-2 / +2 lines)
Lines 249-255 Link Here
249
// force a single location of code for compilation by explicit
249
// force a single location of code for compilation by explicit
250
// template instantiation, avoiding all kinds of nasty linking
250
// template instantiation, avoiding all kinds of nasty linking
251
// problems
251
// problems
252
template basic_cfilebuf< char  >;
252
template class basic_cfilebuf< char  >;
253
template basic_cfilebuf<wchar_t>;
253
template class basic_cfilebuf<wchar_t>;
254
254
255
}	// namespace iscan
255
}	// namespace iscan

Return to bug 50043