Skip to content

Commit 5d6edfc

Browse files
committed
Merge pull request #25 from elite-lang/windows-llvm3.6
修复Windows下小bug
2 parents 0f8c0e8 + f4c4749 commit 5d6edfc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ExIconv/src/DebugMsg.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void DebugMsg::lex_close() {
6565
/**
6666
* @brief 获取解析器的debug输出文件流
6767
*/
68-
std::ostream& DebugMsg::DebugMsg::parser_dbg() {
68+
std::ostream& DebugMsg::parser_dbg() {
6969
auto& fs = getInstance()->parser_dbg_fs;
7070
if(!fs.is_open()) {
7171
fs.open(getInstance()->dbg_file_path+"/parser_dbg.log", std::ios::out);
@@ -82,7 +82,7 @@ void DebugMsg::parser_close() {
8282
/**
8383
* @brief 获取解析器的debug输出文件流
8484
*/
85-
std::ostream& DebugMsg::DebugMsg::red_dbg() {
85+
std::ostream& DebugMsg::red_dbg() {
8686
auto& fs = getInstance()->red_dbg_fs;
8787
if(!fs.is_open()) {
8888
fs.open(getInstance()->dbg_file_path+"/red_dbg.log", std::ios::out);

LR_Scanner

src/help.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* @Author: sxf
33
* @Date: 2015-12-07 10:43:17
44
* @Last Modified by: sxf

0 commit comments

Comments
 (0)