summaryrefslogtreecommitdiff
path: root/upb/refcounted.h
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2015-05-16 13:46:48 -0700
committerJosh Haberman <jhaberman@gmail.com>2015-05-16 14:18:22 -0700
commite087947c84ee6b7d86abe9585ee51efee7595a26 (patch)
treea7ca60b66be0f428645b15f71a7b1c4e190ddcf1 /upb/refcounted.h
parent93791bfe65d210385ab1fb1eb1ccd77fca18b2bf (diff)
Enabled asserts() and verbosity for most Travis builds.
Also added a separate ndebug build for testing that -DNDEBUG builds still work. Also disabled reference debugging by default, since it requires either a global lock or -DUPB_THREAD_UNSAFE.
Diffstat (limited to 'upb/refcounted.h')
-rw-r--r--upb/refcounted.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/upb/refcounted.h b/upb/refcounted.h
index 3de4a12..fe77077 100644
--- a/upb/refcounted.h
+++ b/upb/refcounted.h
@@ -28,9 +28,9 @@
//
// Enabling this requires the application to define upb_lock()/upb_unlock()
// functions that acquire/release a global mutex (or #define UPB_THREAD_UNSAFE).
-#ifndef NDEBUG
-#define UPB_DEBUG_REFS
-#endif
+// For this reason we don't enable it by default, even in debug builds.
+
+// #define UPB_DEBUG_REFS
#ifdef __cplusplus
namespace upb { class RefCounted; }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback