math.cpp: Fix two warnings. Fixes #1549.

db4
Doug Coleman 2016-03-08 10:01:50 -08:00
parent a1f3378365
commit 7488e54825
1 changed files with 2 additions and 2 deletions

View File

@ -223,7 +223,7 @@ void factor_vm::primitive_format_float() {
std::ostringstream localized_stream;
try {
localized_stream.imbue(std::locale(locale));
} catch (const runtime_error& error) {
} catch (const runtime_error&) {
byte_array* array = allot_byte_array(1);
array->data<char>()[0] = '\0';
ctx->replace(tag<byte_array>(array));
@ -248,7 +248,7 @@ void factor_vm::primitive_format_float() {
localized_stream << value;
const std::string& tmp = localized_stream.str();
const char* cstr = tmp.c_str();
int size = tmp.length()+1;
size_t size = tmp.length()+1;
byte_array* array = allot_byte_array(size);
memcpy(array->data<char>(), cstr, size);
ctx->replace(tag<byte_array>(array));