Skip to content

Commit

Permalink
Fix intellisense error due to missing space in ASSERT macro
Browse files Browse the repository at this point in the history
  • Loading branch information
daveorourke committed Mar 20, 2019
1 parent 70d823c commit 241f4b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mp4util.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace mp4v2 { namespace impl {
#ifndef ASSERT
# define ASSERT(expr) \
if (!(expr)) { \
throw new Exception("assert failure: "LIBMPV42_STRINGIFY((expr)), __FILE__, __LINE__, __FUNCTION__ ); \
throw new Exception("assert failure: " LIBMPV42_STRINGIFY((expr)), __FILE__, __LINE__, __FUNCTION__ ); \
}
#endif

Expand Down

0 comments on commit 241f4b2

Please sign in to comment.