Commit 463fd687 authored by apetrovichev's avatar apetrovichev

Fixed Windows warnings

parent 2596baf9
......@@ -96,7 +96,7 @@ T NormalizeBBoxLayer::getParameter(const LayerParams &params,
NormalizeBBoxLayer::NormalizeBBoxLayer(LayerParams &params) : Layer(params)
{
_eps = getParameter<float>(params, "eps", 0, false, 1e-10);
_eps = getParameter<float>(params, "eps", 0, false, 1e-10f);
_across_spatial = getParameter<bool>(params, "across_spatial");
_channel_shared = getParameter<bool>(params, "channel_shared");
}
......
......@@ -153,7 +153,7 @@ void PriorBoxLayer::getVariance(const LayerParams &params)
else
{
// Set default to 0.1.
_variance.push_back(0.1);
_variance.push_back(0.1f);
}
}
}
......@@ -211,8 +211,6 @@ void PriorBoxLayer::allocate(const std::vector<Blob*> &inputs, std::vector<Blob>
void PriorBoxLayer::forward(std::vector<Blob*> &inputs, std::vector<Blob> &outputs)
{
(void)inputs; // to suppress unused parameter warning
float* outputPtr = outputs[0].ptrf();
// first prior: aspect_ratio = 1, size = min_size
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment