Skip to content

Commit

Permalink
Inline out_of_memory macro
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguystone authored and xzyfer committed Mar 28, 2018
1 parent fd989f6 commit 5539920
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 4 additions & 2 deletions src/sass.cpp
Expand Up @@ -33,8 +33,10 @@ extern "C" {
void* ADDCALL sass_alloc_memory(size_t size)
{
void* ptr = malloc(size);
if (ptr == NULL)
out_of_memory();
if (ptr == NULL) {
std::cerr << "Out of memory.\n";
exit(EXIT_FAILURE);
}
return ptr;
}

Expand Down
5 changes: 0 additions & 5 deletions src/util.hpp
Expand Up @@ -12,11 +12,6 @@

namespace Sass {

#define out_of_memory() do { \
std::cerr << "Out of memory.\n"; \
exit(EXIT_FAILURE); \
} while (0)

double round(double val, size_t precision = 0);
double sass_strtod(const char* str);
const char* safe_str(const char *, const char* = "");
Expand Down

0 comments on commit 5539920

Please sign in to comment.