Re: [LyX features/biblatex2] Fix isDefaultBiblio() test

2016-12-31 Thread Jürgen Spitzmüller
Am Samstag, den 31.12.2016, 15:52 + schrieb José Abílio Matos: > It should be possible now to write this as: > > for(string const : default_biblios_) >     if (suffixIs(s, bfs) || bf == s) >     return true; > > Or is there any reason against it? No. Except for my ignorance. Thanks!

Re: [LyX features/biblatex2] Fix isDefaultBiblio() test

2016-12-31 Thread José Abílio Matos
On Saturday, December 31, 2016 4:01:31 PM WET Juergen Spitzmueller wrote: > + vector::const_iterator it = default_biblios_.begin(); > + vector::const_iterator end = default_biblios_.end(); > + for (; it != end; ++it) { > + string const s = *it; > + if