diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2008-03-07 16:25:23 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2008-03-07 16:25:23 +0000 |
commit | 07ef9a58959abb19cc897735e4bb81727276b4fe (patch) | |
tree | 06b020e194fbb8f79a5aad04d58c219a24fe06e4 /Build/source/libs/graphite-engine/src/segment/TransductionLog.cpp | |
parent | 9fd5583d1d3a628142c0386dd733a70f4a91cecb (diff) |
more warning suppression in Graphite code
git-svn-id: svn://tug.org/texlive/trunk@6877 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/graphite-engine/src/segment/TransductionLog.cpp')
-rw-r--r-- | Build/source/libs/graphite-engine/src/segment/TransductionLog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/libs/graphite-engine/src/segment/TransductionLog.cpp b/Build/source/libs/graphite-engine/src/segment/TransductionLog.cpp index 782732ad325..78e46b9b5fd 100644 --- a/Build/source/libs/graphite-engine/src/segment/TransductionLog.cpp +++ b/Build/source/libs/graphite-engine/src/segment/TransductionLog.cpp @@ -733,8 +733,8 @@ void GrTableManager::LogAttributes(std::ostream & strmOut, int ipass, // Figure out which slot attributes were modified for some slot during the pass. bool * prgfMods = new bool[kslatMax + NumUserDefn() - 1]; - bool fPreJust = (!fJustWidths && ipass == m_ipassJust1 - 1 && ShouldLogJustification()); - bool fPostJust = (fJustWidths || ipass == m_ipassJust1 && ShouldLogJustification()); + bool fPreJust = (!fJustWidths && ipass == m_ipassJust1 - 1 && ShouldLogJustification()); + bool fPostJust = ((fJustWidths || ipass == m_ipassJust1) && ShouldLogJustification()); int ccomp; // max number of components per slot int cassoc; // max number of associations per slot |