Skip to content

Commit

Permalink
Merge pull request sass#184 from craigbarnes/constctx
Browse files Browse the repository at this point in the history
Improve const-correctness in sass_interface.h
  • Loading branch information
Aaron Leung committed Nov 14, 2013
2 parents cc595a8 + d8c9423 commit ffc2afd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sass_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ extern "C" {
struct sass_options {
int output_style;
int source_comments; // really want a bool, but C doesn't have them
char* include_paths;
char* image_path;
const char* include_paths;
const char* image_path;
};

struct sass_context {
Expand All @@ -34,7 +34,7 @@ struct sass_context {
};

struct sass_file_context {
char* input_path;
const char* input_path;
char* output_string;
struct sass_options options;
int error_status;
Expand All @@ -45,8 +45,8 @@ struct sass_file_context {
};

struct sass_folder_context {
char* search_path;
char* output_path;
const char* search_path;
const char* output_path;
struct sass_options options;
int error_status;
char* error_message;
Expand Down

0 comments on commit ffc2afd

Please sign in to comment.