From f2f37aeed8433082d5ef8564d1e4cd008f0c4c7b Mon Sep 17 00:00:00 2001 From: whitequark Date: Wed, 8 Mar 2017 18:08:20 +0000 Subject: [PATCH] Remove dead code. --- src/solvespace.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/solvespace.h b/src/solvespace.h index 63da78a..797aed2 100644 --- a/src/solvespace.h +++ b/src/solvespace.h @@ -121,8 +121,6 @@ inline double ffabs(double v) { return (v > 0) ? v : (-v); } #define VERY_POSITIVE (1e10) #define VERY_NEGATIVE (-1e10) -#define isforname(c) (isalnum(c) || (c) == '_' || (c) == '-' || (c) == '#') - #if defined(WIN32) std::string Narrow(const wchar_t *s); std::wstring Widen(const char *s); @@ -154,7 +152,6 @@ std::string PathSepPlatformToUnix(const std::string &filename); std::string PathSepUnixToPlatform(const std::string &filename); std::string PathFromCurrentDirectory(const std::string &relFilename); FILE *ssfopen(const std::string &filename, const char *mode); -std::fstream ssfstream(const std::string &filename, std::ios_base::openmode mode); void ssremove(const std::string &filename); const size_t MAX_RECENT = 8;