Bug 895322 - Part 2: Stop generating MOZ_STATIC_ASSERT in the telemetry code; r=Waldo

--HG--
extra : rebase_source : 5fae47388a94b4429eb4ed217b92ed919b58d2d8
This commit is contained in:
Ehsan Akhgari 2013-07-18 14:32:52 -04:00
parent 2824b29025
commit de0430765a

View File

@ -85,7 +85,7 @@ def write_histogram_table(histograms):
# their upper bounds, we have to let the compiler do the checking.
def static_assert(expression, message):
print "MOZ_STATIC_ASSERT(%s, \"%s\");" % (expression, message)
print "static_assert(%s, \"%s\");" % (expression, message)
def static_asserts_for_boolean(histogram):
pass