X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FSafeAssert.cpp;h=4f2db41a2d4515bbe60b1bf72cea80a748fb5f2c;hb=de821c225980359651a07b670174ae90d4f655c8;hp=e9faca759c81d7c77bed6f478333b74e9c91d8fb;hpb=25b8374ac42519da50960984b541a6740f5d851a;p=folly.git diff --git a/folly/SafeAssert.cpp b/folly/SafeAssert.cpp index e9faca75..4f2db41a 100644 --- a/folly/SafeAssert.cpp +++ b/folly/SafeAssert.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2013 Facebook, Inc. + * Copyright 2017 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,23 +14,26 @@ * limitations under the License. */ -#include "folly/SafeAssert.h" +#include -#include "folly/Conv.h" -#include "folly/FileUtil.h" +#include +#include namespace folly { namespace detail { namespace { +void writeStderr(const char* s, size_t len) { + writeFull(STDERR_FILENO, s, len); +} void writeStderr(const char* s) { - writeFull(STDERR_FILENO, s, strlen(s)); + writeStderr(s, strlen(s)); } } // namespace void assertionFailure(const char* expr, const char* msg, const char* file, unsigned int line, const char* function) { writeStderr("\n\nAssertion failure: "); - writeStderr(expr); + writeStderr(expr + 1, strlen(expr) - 2); writeStderr("\nMessage: "); writeStderr(msg); writeStderr("\nFile: "); @@ -47,4 +50,3 @@ void assertionFailure(const char* expr, const char* msg, const char* file, } }} // namespaces -