~marcustomlinson/unity-scopes-api/fix-clang-warnings

« back to all changes in this revision

Viewing changes to src/scopes/internal/SearchMetadataImpl.cpp

  • Committer: Marcus Tomlinson
  • Date: 2015-11-25 08:55:19 UTC
  • Revision ID: marcus.tomlinson@canonical.com-20151125085519-53wgcq2njzlvthly
Fix Clang warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        it = find_or_throw("SearchMetadataImpl()", var, "location");
57
57
        location_ = Location(it->second.get_dict());
58
58
    }
59
 
    catch (std::exception &e)
 
59
    catch (std::exception const&)
60
60
    {
61
61
    }
62
62
 
71
71
        }
72
72
        aggregated_keywords_ = keywords_s;
73
73
    }
74
 
    catch (std::exception &e)
 
74
    catch (std::exception const&)
75
75
    {
76
76
    }
77
77
}