aboutsummaryrefslogtreecommitdiff
path: root/libbutl/project-name.mxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/project-name.mxx')
-rw-r--r--libbutl/project-name.mxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbutl/project-name.mxx b/libbutl/project-name.mxx
index 5f5a586..dce1c7a 100644
--- a/libbutl/project-name.mxx
+++ b/libbutl/project-name.mxx
@@ -22,7 +22,7 @@ export module butl.project_name;
import std.core;
import std.io;
#endif
-import butl.utility; // casecmp(), sanitize_identifier()
+import butl.utility; // icasecmp(), sanitize_identifier()
#else
#include <libbutl/utility.mxx>
#endif
@@ -100,7 +100,7 @@ LIBBUTL_MODEXPORT namespace butl
//
int compare (const project_name& n) const {return compare (n.value_);}
int compare (const std::string& n) const {return compare (n.c_str ());}
- int compare (const char* n) const {return butl::casecmp (value_, n);}
+ int compare (const char* n) const {return icasecmp (value_, n);}
private:
std::string value_;