Add missing const.

* src/kripke/kripkeexplicit.cc: Add missing const, reported by Etienne
Renault using Apple's clang version that is installed with OS X 10.9.
This commit is contained in:
Alexandre Duret-Lutz 2014-02-11 10:05:57 +01:00
parent cb0b3d3c67
commit 0b5f63c296

View file

@ -1,5 +1,6 @@
// Copyright (C) 2011, 2012 Laboratoire de Recherche et Developpement
// de l'Epita (LRDE)
// -*- coding: utf-8 -*-
// Copyright (C) 2011, 2012, 2014 Laboratoire de Recherche et
// Developpement de l'Epita (LRDE)
//
// This file is part of Spot, a model checking library.
//
@ -247,7 +248,7 @@ namespace spot
void kripke_explicit::add_transition(std::string source,
std::string dest)
{
std::map<std::string, state_kripke*>::iterator destination
std::map<const std::string, state_kripke*>::iterator destination
= ns_nodes_.find(dest);
if (ns_nodes_.find(dest) == ns_nodes_.end())