소스 검색

bump the version number and add version hisoty

Sean Barrett 9 년 전
부모
커밋
418d21f2e2
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      stb_c_lexer.h

+ 2 - 1
stb_c_lexer.h

@@ -1,4 +1,4 @@
-// stb_c_lexer.h - v0.06 - public domain Sean Barrett 2013
+// stb_c_lexer.h - v0.07 - public domain Sean Barrett 2013
 // lexer for making little C-like languages with recursive-descent parsers
 // lexer for making little C-like languages with recursive-descent parsers
 //
 //
 // This file provides both the interface and the implementation.
 // This file provides both the interface and the implementation.
@@ -10,6 +10,7 @@
 // suffixes on integer constants are not handled (you can override this).
 // suffixes on integer constants are not handled (you can override this).
 //
 //
 // History:
 // History:
+//     0.07 fix mishandling of hexadecimal constants parsed by strtol
 //     0.06 fix missing next character after ending quote mark (Andreas Fredriksson)
 //     0.06 fix missing next character after ending quote mark (Andreas Fredriksson)
 //     0.05 refixed get_location because github version had lost the fix
 //     0.05 refixed get_location because github version had lost the fix
 //     0.04 fix octal parsing bug
 //     0.04 fix octal parsing bug