diff --git a/include/mbgl/gfx/context.hpp b/include/mbgl/gfx/context.hpp index 921e3f1bf74..8e21265098f 100644 --- a/include/mbgl/gfx/context.hpp +++ b/include/mbgl/gfx/context.hpp @@ -53,7 +53,7 @@ using VertexAttributeArrayPtr = std::shared_ptr; #endif namespace { - ContextObserver nullObserver; +ContextObserver nullObserver; } class Context { diff --git a/include/mbgl/tile/tile_operation.hpp b/include/mbgl/tile/tile_operation.hpp index 638256d9a98..b98a045cfbe 100644 --- a/include/mbgl/tile/tile_operation.hpp +++ b/include/mbgl/tile/tile_operation.hpp @@ -3,14 +3,14 @@ namespace mbgl { enum class TileOperation : uint8_t { - RequestedFromCache, ///< A read request from the cache + RequestedFromCache, ///< A read request from the cache RequestedFromNetwork, ///< A read request from the online source - LoadFromNetwork, ///< Tile data from the network has been retrieved - LoadFromCache, ///< Tile data from the cache has been retrieved - StartParse, ///< Background processing of tile data has been initiated - EndParse, ///< Background processing of tile data has been completed - Error, ///< An error occurred while loading the tile - Cancelled, ///< Loading of a tile was cancelled - NullOp, ///< No operation has taken place + LoadFromNetwork, ///< Tile data from the network has been retrieved + LoadFromCache, ///< Tile data from the cache has been retrieved + StartParse, ///< Background processing of tile data has been initiated + EndParse, ///< Background processing of tile data has been completed + Error, ///< An error occurred while loading the tile + Cancelled, ///< Loading of a tile was cancelled + NullOp, ///< No operation has taken place }; } // namespace mbgl