renamed: Util/GitDescription.cpp.in -> Util/git_sha.cpp.in

renamed:    Util/GitDescription.h -> Util/git_sha.h
This commit is contained in:
Dennis Luxen
2015-01-05 14:32:04 +01:00
parent a4919ffb45
commit 2caeb4008c
14 changed files with 33 additions and 59 deletions
+7 -3
View File
@@ -1,6 +1,6 @@
/*
Copyright (c) 2014, Project OSRM, Dennis Luxen, others
Copyright (c) 2015, Project OSRM, Dennis Luxen, others
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
@@ -63,11 +63,15 @@ struct DescriptorConfig
DescriptorConfig(const OtherT &other) : instructions(other.print_instructions),
geometry(other.geometry),
encode_geometry(other.compression),
zoom_level(other.zoom_level) { }
zoom_level(other.zoom_level)
{
BOOST_ASSERT(zoom_level >= 0);
}
bool instructions;
bool geometry;
bool encode_geometry;
unsigned short zoom_level;
short zoom_level;
};
template <class DataFacadeT> class BaseDescriptor