move includes where they belong
This commit is contained in:
parent
ac3dcc35bf
commit
0892d2ae68
2 changed files with 2 additions and 2 deletions
|
|
@ -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
2
main.c
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue