use a more typical extension for C++ header files

This commit is contained in:
Jeff Epler 2015-11-02 11:34:59 -06:00
parent 242cd9d84b
commit 171c391b20
5 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
default: dashing
dashing: main.cc dashing.cc dashing.h
dashing: main.cc dashing.cc dashing.hh parse_numbers.hh
g++ -W -Wall -O2 -g -std=c++11 $(filter %.cc, $^) -o $@ -lboost_random
dashing-noopt: main.cc dashing.cc dashing.h
dashing-noopt: main.cc dashing.cc dashing.hh parse_numbers.hh
g++ -W -Wall -O0 -g -std=c++11 $(filter %.cc, $^) -o $@ -lboost_random

View file

@ -1,5 +1,5 @@
#include "parse_numbers.h"
#include "dashing.h"
#include "parse_numbers.hh"
#include "dashing.hh"
namespace dashing
{
std::vector<double> parse_numbers(std::string line) {

View file

@ -20,8 +20,8 @@ freely, subject to the following restrictions:
// demo and benchmark program for dashing
#include "dashing.h"
#include "parse_numbers.h"
#include "dashing.hh"
#include "parse_numbers.hh"
#include <iostream>
#include <boost/random.hpp>
#include <boost/random/random_device.hpp>