FT field_type changed to const FT & field_type in functions arguments
This commit is contained in:
@@ -45,8 +45,8 @@ class PostgreSQLExpression : public DbExpression
|
||||
{
|
||||
public:
|
||||
|
||||
void esc(char val, PT::TextStream & stream, FT field_type);
|
||||
void esc(const PT::Date & date, PT::TextStream & stream, FT field_type);
|
||||
void esc(char val, PT::TextStream & stream, const FT & field_type);
|
||||
void esc(const PT::Date & date, PT::TextStream & stream, const FT & field_type);
|
||||
|
||||
DbExpression & page(PT::TextStream & stream, size_t page_number, size_t page_size);
|
||||
|
||||
@@ -64,8 +64,8 @@ protected:
|
||||
|
||||
private:
|
||||
|
||||
void before_field_value_string(FT field_type);
|
||||
void after_field_value_string(FT field_type);
|
||||
void before_field_value_string(const FT & field_type);
|
||||
void after_field_value_string(const FT & field_type);
|
||||
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user