Files
yoga/java/jni/macros.h
Andres Suarez 42bba10894 Tidy up license headers
Summary: Changelog: Tidy up license headers

Reviewed By: SidharthGuglani

Differential Revision: D17919414

fbshipit-source-id: 0501b495dc0a42256ca6ba3284a873da1ab175c0
2019-10-15 10:36:38 -07:00

24 lines
511 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <cstdlib>
#ifdef __ANDROID__
#include <android/log.h>
#endif
#ifdef __ANDROID__
#define VANILLAJNI_LOG_ERROR(tag, format, ...) \
__android_log_print(ANDROID_LOG_ERROR, tag, format, ##__VA_ARGS__)
#else
#define VANILLAJNI_LOG_ERROR(tag, format, ...)
#endif
#define VANILLAJNI_DIE() std::abort()