2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Remove unused variable.

[SVN r77647]
This commit is contained in:
Steven Watanabe
2012-03-30 14:05:22 +00:00
parent ee897c8bd3
commit 4ef470dbf5
2 changed files with 0 additions and 2 deletions

View File

@@ -343,7 +343,6 @@ SETTINGS * addsettings( SETTINGS * head, int flag, OBJECT * symbol, LIST * value
v->symbol = object_copy( symbol );
v->value = value;
v->next = head;
v->multiple = 0;
head = v;
}
else if ( flag == VAR_APPEND )

View File

@@ -111,7 +111,6 @@ struct _settings
SETTINGS * next;
OBJECT * symbol; /* symbol name for var_set() */
LIST * value; /* symbol value for var_set() */
int multiple;
};
/* TARGETS - a chain of TARGETs. */