diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-07-21 13:47:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-07-21 13:47:40 +0100 |
| commit | 19356a292ba53b6d40270b1e74af5dad2304dbd5 (patch) | |
| tree | 5632234ec4ce2106284f5c23e5af2d110c996c44 /src/reel_asset.cc | |
| parent | 26f6ead44ff6bcb259c1755f91beb0a9e3eee988 (diff) | |
Various fix-ups and warning fixes from OS X.
Diffstat (limited to 'src/reel_asset.cc')
| -rw-r--r-- | src/reel_asset.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reel_asset.cc b/src/reel_asset.cc index 4c93b629..0c7c6e51 100644 --- a/src/reel_asset.cc +++ b/src/reel_asset.cc @@ -76,9 +76,9 @@ ReelAsset::ReelAsset (shared_ptr<const cxml::Node> node) } void -ReelAsset::write_to_cpl (xmlpp::Node* node, Standard) const +ReelAsset::write_to_cpl (xmlpp::Node* node, Standard standard) const { - pair<string, string> const attr = cpl_node_attribute (); + pair<string, string> const attr = cpl_node_attribute (standard); xmlpp::Element* a = node->add_child (cpl_node_name ()); if (!attr.first.empty ()) { a->set_attribute (attr.first, attr.second); @@ -93,7 +93,7 @@ ReelAsset::write_to_cpl (xmlpp::Node* node, Standard) const } pair<string, string> -ReelAsset::cpl_node_attribute () const +ReelAsset::cpl_node_attribute (Standard) const { return make_pair ("", ""); } |
