inifile.cc (8946:fb6c89334b86) inifile.cc (9550:e0e2c8f83d08)
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 240 unchanged lines hidden (view full) ---

249 if (unref_ok_entries.size()) {
250 search_unref_entries = true;
251 }
252 }
253
254 for (EntryTable::iterator ei = table.begin();
255 ei != table.end(); ++ei) {
256 const string &entryName = ei->first;
1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 240 unchanged lines hidden (view full) ---

249 if (unref_ok_entries.size()) {
250 search_unref_entries = true;
251 }
252 }
253
254 for (EntryTable::iterator ei = table.begin();
255 ei != table.end(); ++ei) {
256 const string &entryName = ei->first;
257 Entry *entry = ei->second;
257 entry = ei->second;
258
259 if (entryName == "unref_section_ok" ||
260 entryName == "unref_entries_ok")
261 {
262 continue;
263 }
264
265 if (!entry->isReferenced()) {

--- 63 unchanged lines hidden ---
258
259 if (entryName == "unref_section_ok" ||
260 entryName == "unref_entries_ok")
261 {
262 continue;
263 }
264
265 if (!entry->isReferenced()) {

--- 63 unchanged lines hidden ---