mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-01 11:22:49 +08:00
Reviewed By: dtolnay Differential Revision: D75209078 fbshipit-source-id: 6b67d3354091d18b8171a6f4b38465ffcc9e17c5
19 lines
507 B
C++
19 lines
507 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/**
|
|
* A compilation unit to provide warnings about the code and avoid
|
|
* repeated messages.
|
|
*/
|
|
#ifdef PULSAR_ASSERTIONS
|
|
#pragma message("WARNING: assertions are enabled in Pulsar.")
|
|
#endif
|
|
#ifdef PULSAR_LOGGING_ENABLED
|
|
#pragma message("WARNING: logging is enabled in Pulsar.")
|
|
#endif
|