You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -424,22 +424,22 @@ $
424
424
425
425
[TOC](#TOC)
426
426
427
-
2) About preprocessor symbols **NDEBUG** and **DEBUG**
427
+
2) About preprocessor symbols `NDEBUG` and `EXIV2_DEBUG_MESSAGES`
428
428
429
-
In accordance with current practice, exiv2 respects the symbol *NDEBUG* which is set for Release builds. There are sequences of code which are defined within:
429
+
Exiv2 respects the symbol `NDEBUG` which is set only for Release builds. There are sequences of code which are defined within:
430
430
431
431
```C++
432
-
#ifdefDEBUG
432
+
#ifdefEXIV2_DEBUG_MESSAGES
433
433
....
434
434
#endif
435
435
```
436
436
437
-
Those blocks of code are not compiled for debug builds. They are provided for additional debugging information. For example, if you are interested in additonal output from webpimage.cpp, you can update your build as follows:
437
+
Those blocks of code are not compiled unless you define `EXIV2_DEBUG_MESSAGES` by yourself. They are provided for additional debugging information. For example, if you are interested in additional output from webpimage.cpp, you can update your build as follows:
0 commit comments