--- Begin Message ---
------------------------------------------------------------
revno: 6507
committer: Johan Hake <hake.dev@xxxxxxxxx>
branch nick: work-1.0
timestamp: Mon 2012-01-23 23:07:23 +0100
message:
Fix bug in dolfin_not_implemented. Ellipsis are evil...
-- Will hopefull fix Hiesenbug in intersection operator for trunk lucid buildbot
modified:
dolfin/log/log.h
--
lp:dolfin/1.0.x
https://code.launchpad.net/~dolfin-core/dolfin/1.0.x
Your team DOLFIN Core Team is subscribed to branch lp:dolfin/1.0.x.
To unsubscribe from this branch go to https://code.launchpad.net/~dolfin-core/dolfin/1.0.x/+edit-subscription
=== modified file 'dolfin/log/log.h'
--- dolfin/log/log.h 2011-11-18 12:14:50 +0000
+++ dolfin/log/log.h 2012-01-23 22:07:23 +0000
@@ -152,9 +152,9 @@
#define dolfin_not_implemented() \
do { \
dolfin_error("log.h", \
- "perform call to DOLFIN function %s", \
+ "perform call to DOLFIN function", \
"The function %s has not been implemented (in %s line %d)", \
- __FUNCTION__, __FUNCTION__, __FILE__, __LINE__); \
+ __FUNCTION__, __FILE__, __LINE__); \
} while (false)
// Assertion, only active if DEBUG is defined
--- End Message ---