xflouris / libpll

Phylogenetic Likelihood Library
GNU Affero General Public License v3.0
26 stars 6 forks source link

Add include guards in pll.h #59

Closed amkozlov closed 7 years ago

amkozlov commented 8 years ago

Including both pll.h and pll_optimize.h fails, because this check in pll_optimize.h

#ifndef PLL_H_
#define PLL_H_
#include <pll.h>
#endif

doesn't make sense (since pll_optimize.h itself is guarded), it should be moved into pll.h instead.

xflouris commented 7 years ago

fixed