summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/source_state.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/renderer/source_state.hpp')
-rw-r--r--src/mbgl/renderer/source_state.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mbgl/renderer/source_state.hpp b/src/mbgl/renderer/source_state.hpp
index 61546aff62..7217302630 100644
--- a/src/mbgl/renderer/source_state.hpp
+++ b/src/mbgl/renderer/source_state.hpp
@@ -6,16 +6,17 @@
namespace mbgl {
class RenderTile;
-using namespace style::conversion;
class SourceFeatureState {
public:
SourceFeatureState() = default;
~SourceFeatureState() = default;
- void updateState(const optional<std::string>& sourceLayerID, const std::string& featureID, const FeatureState& newState);
+ void updateState(const optional<std::string>& sourceLayerID, const std::string& featureID,
+ const FeatureState& newState);
void getState(FeatureState& result, const optional<std::string>& sourceLayerID, const std::string& featureID) const;
- void removeState(const optional<std::string>& sourceLayerID, const optional<std::string>& featureID, const optional<std::string>& stateKey);
+ void removeState(const optional<std::string>& sourceLayerID, const optional<std::string>& featureID,
+ const optional<std::string>& stateKey);
void coalesceChanges(std::vector<RenderTile>& tiles);