소스 검색

[minor] missing static on lib internal

isundil 9 년 전
부모
커밋
acb5b32e82
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      levenshtein.hpp

+ 1 - 1
levenshtein.hpp

@@ -20,7 +20,7 @@
 #include <utility>
 #include <queue>
 
-unsigned int levenshtein_get(unsigned int * const *map, int px, int py)
+static unsigned int levenshtein_get(unsigned int * const *map, int px, int py)
 {
     if (px == -1 && py == -1)
         return 0;