move includes where they belong

This commit is contained in:
Jeff Epler 2015-08-20 09:33:09 -05:00
parent ac3dcc35bf
commit 0892d2ae68
2 changed files with 2 additions and 2 deletions

View file

@ -30,8 +30,6 @@ freely, subject to the following restrictions:
#include <stdexcept>
#include <boost/algorithm/string/replace.hpp>
#include <boost/algorithm/string/trim.hpp>
#include <boost/random.hpp>
#include <boost/random/random_device.hpp>
struct PSMatrix {
double a, b, c, d, e, f;

2
main.c
View file

@ -22,6 +22,8 @@ freely, subject to the following restrictions:
#include "dashing.h"
#include <iostream>
#include <boost/random.hpp>
#include <boost/random/random_device.hpp>
std::vector<Segment> SegmentsFromFile(std::istream &fi, double jitter) {
static boost::random_device urandom;