소스 검색

更新 src/captcha.cpp

1585346868 1 개월 전
부모
커밋
142dde73e0
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/captcha.cpp

+ 1 - 2
src/captcha.cpp

@@ -1,7 +1,6 @@
 #include "captcha.h"
 #include "dll_interface.h"
 #include <cstdio>
-#include <mimic.h>
 #include "util/img.h"
 #include "util/file.h"
 extern "C" {
@@ -30,7 +29,7 @@ std::string module::captcha::make(int width,int height,int length,const std::str
 {
     ylib::buffer data;
     std::string code;
-    data = ylib::util::img::make_code(width,height,length,code);
+    data = ylib::img::make_code(width,height,length,code);
     ylib::file::write(filepath,data);
     return code;
 }