Sha256: 8c11faee397ddfe4e86bfc27de74a3d0f9fdcfee3148942f8ebb6835a809e6e1
Contents?: true
Size: 361 Bytes
Versions: 109
Compression:
Stored size: 361 Bytes
Contents
#ifndef SASS_MAPPING_H #define SASS_MAPPING_H #include "position.hpp" namespace Sass { struct Mapping { Position original_position; Position generated_position; Mapping(const Position& original_position, const Position& generated_position) : original_position(original_position), generated_position(generated_position) { } }; } #endif
Version data entries
109 entries across 92 versions & 18 rubygems