Skip to content

Commit

Permalink
Fix tab and spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Feb 21, 2024
1 parent ba427c1 commit 29ff35a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hld/Module.hx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ private typedef GlobalAccess = {

typedef ModuleProto = {
var name : String;
var size : Int;
var size : Int;
var fieldNames : Array<String>;
var parent : ModuleProto;
var fields : Map<String,{
Expand Down Expand Up @@ -295,7 +295,7 @@ class Module {
var funs = ffuns.functions;
var matched = [];

while( breaks.length == 0 && funs.length > 0 ) {
while( breaks.length == 0 && funs.length > 0 ) {
for( f in funs ) {
if( f.lmin > line || f.lmax < line ) continue;
matched.push(f);
Expand Down
2 changes: 1 addition & 1 deletion hldebug-wrapper/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'conditions': [
[ "OS=='mac'", {
"sources": [ 'src/mdbg/mdbg.c', 'src/mdbg/mach_excServer.c', 'src/mdbg/mach_excUser.c' ]
}]
}]
],
'dependencies': ["<!(node -p \"require('node-addon-api').gyp\")"],
'defines': [ 'LIBHL_STATIC' ],
Expand Down

0 comments on commit 29ff35a

Please sign in to comment.