mirror of https://github.com/CGAL/cgal
Merge pull request #2478 from mtola/master
fix bug -> 2x 2 missing "inline" to prevent duplicate symbols during …
This commit is contained in:
commit
39516eaa2b
|
|
@ -91,7 +91,7 @@ bool write_off(const char* fname,
|
|||
|
||||
namespace internal { namespace read_off_tools {
|
||||
|
||||
bool is_whitespace(const std::string& s)
|
||||
inline bool is_whitespace(const std::string& s)
|
||||
{
|
||||
for(unsigned int i=0; i < s.size(); i++){
|
||||
if(s[i] != ' ' && s[i] != '\t'){
|
||||
|
|
@ -101,7 +101,7 @@ bool write_off(const char* fname,
|
|||
return true;
|
||||
}
|
||||
|
||||
std::string next_non_comment(std::istream& is)
|
||||
inline std::string next_non_comment(std::istream& is)
|
||||
{
|
||||
std::string line;
|
||||
do {
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ bool write_off(const char* fname,
|
|||
|
||||
namespace internal { namespace read_off_tools {
|
||||
|
||||
bool is_whitespace(const std::string& s)
|
||||
inline bool is_whitespace(const std::string& s)
|
||||
{
|
||||
for(unsigned int i=0; i < s.size(); i++){
|
||||
if(s[i] != ' ' && s[i] != '\t'){
|
||||
|
|
@ -120,7 +120,7 @@ bool write_off(const char* fname,
|
|||
return true;
|
||||
}
|
||||
|
||||
std::string next_non_comment(std::istream& is)
|
||||
inline std::string next_non_comment(std::istream& is)
|
||||
{
|
||||
std::string line;
|
||||
do {
|
||||
|
|
|
|||
Loading…
Reference in New Issue