mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Fix warning about signed/unsigned
This commit is contained in:
parent
83cd3f4293
commit
a98df58537
@ -125,7 +125,7 @@ void InsetListings::latex(otexstream & os, OutputParams const & runparams) const
|
||||
// then remove the relative options.
|
||||
vector<string> opts =
|
||||
getVectorFromString(param_string, ",", false);
|
||||
for (int i = 0; i < opts.size(); ++i) {
|
||||
for (size_t i = 0; i < opts.size(); ++i) {
|
||||
if (prefixIs(opts[i], "float")) {
|
||||
if (prefixIs(opts[i], "float="))
|
||||
float_placement = opts[i].substr(6);
|
||||
|
Loading…
Reference in New Issue
Block a user