diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-26 10:12:16 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-02-26 10:30:42 -0500 |
commit | d8cbee12b2ffbf90e6e32e573cfbc5b8613dd5b6 (patch) | |
tree | d7704b28a7c62dbf686896e693466a14c67d9307 | |
parent | 2f7ad95a2c62a1a81b8498ab970d512d398eb837 (diff) | |
download | tame-d8cbee12b2ffbf90e6e32e573cfbc5b8613dd5b6.tar.gz tame-d8cbee12b2ffbf90e6e32e573cfbc5b8613dd5b6.tar.bz2 tame-d8cbee12b2ffbf90e6e32e573cfbc5b8613dd5b6.zip |
validtor: Remove unresolved extern warning
See diff comment.
* src/current/compiler/validate.xsl (lvv:validate)[c:*[@name or @of]]:
Remove unresolved extern warning.
-rw-r--r-- | src/current/compiler/validate.xsl | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/current/compiler/validate.xsl b/src/current/compiler/validate.xsl index c875520..86a598f 100644 --- a/src/current/compiler/validate.xsl +++ b/src/current/compiler/validate.xsl @@ -2,7 +2,7 @@ <!-- Validates a document for correctness in a manner that is beyond XSD - Copyright (C) 2016 R-T Specialty, LLC. + Copyright (C) 2016, 2018 R-T Specialty, LLC. This file is part of TAME. @@ -473,12 +473,8 @@ <xsl:choose> <xsl:when test="$sym/@dim = '?'"> - <xsl:message> - <xsl:text>internal warning: unresolved param </xsl:text> - <xsl:text>dimension: `</xsl:text> - <xsl:value-of select="@name" /> - <xsl:text>'</xsl:text> - </xsl:message> + <!-- probably uses an extern; this will be taken care of by + the linker, or it will provide an error then --> </xsl:when> <xsl:otherwise> |