[literal_cost.cc] include fast_log.h to use defined log2 function

This commit is contained in:
Cosimo Lupo 2015-02-26 18:42:45 +00:00
parent cec8d4e735
commit a71f962f74

View File

@ -16,6 +16,10 @@
#include "./literal_cost.h"
#if defined(_MSC_VER) && _MSC_VER <= 1600
#include "./fast_log.h"
#endif
#include <math.h>
#include <stdint.h>
#include <algorithm>