Skip to content

Commit

Permalink
Move all include's at the beginning of the file.
Browse files Browse the repository at this point in the history
  • Loading branch information
iglpdc committed Jul 23, 2014
1 parent be6f2c6 commit 1c8e027
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/khmer.hh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ __attribute__((cpychecker_type_object_for_typedef(typename)))
#include <map>
#include <queue>

#include "khmer_exception.hh"

# define MAX_COUNT 255
# define MAX_BIGCOUNT 65535
# define DEFAULT_TAG_DENSITY 40 // must be even
Expand All @@ -58,7 +60,6 @@ __attribute__((cpychecker_type_object_for_typedef(typename)))
# define MIN( a, b ) (((a) > (b)) ? (b) : (a))
# define MAX( a, b ) (((a) < (b)) ? (b) : (a))

#include "khmer_exception.hh"
namespace khmer
{
// largest number we can count up to, exactly. (8 bytes)
Expand Down

0 comments on commit 1c8e027

Please sign in to comment.