Changeset 7a3fdc9f14c54fcdef23567f24b38abe3c25501d
- Timestamp:
- 05/01/08 21:54:43
(3 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209671683 +0300
- git-parent:
[a660c4fbe421313ff0641bb18b89008dc42afc7b]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209671683 +0300
- Message:
Fix expansion to no-op
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r47240a1 |
r7a3fdc9 |
|
| 365 | 365 | #define stats_TimersDumpAll(a) __stats_TimersDumpAll( VLC_OBJECT(a) ) |
|---|
| 366 | 366 | #else |
|---|
| 367 | | #define stats_TimerStart(a,b,c) {} |
|---|
| 368 | | #define stats_TimerStop(a,b) {} |
|---|
| 369 | | #define stats_TimerDump(a,b) {} |
|---|
| 370 | | #define stats_TimersDumpAll(a) {} |
|---|
| | 367 | #define stats_TimerStart(a,b,c) (void)0 |
|---|
| | 368 | #define stats_TimerStop(a,b) (void)0 |
|---|
| | 369 | #define stats_TimerDump(a,b) (void)0 |
|---|
| | 370 | #define stats_TimersDumpAll(a) (void)0 |
|---|
| 371 | 371 | #endif |
|---|
| 372 | 372 | VLC_EXPORT( void,__stats_TimerStart, (vlc_object_t*, const char *, unsigned int ) ); |
|---|