Skip to content

Commit

Permalink
Test 2
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Jun 5, 2024
1 parent 7216b65 commit 905ab2c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions include/sexpp/sexp.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ struct octet_traits : std::char_traits<octet_t> {
static int_type not_eof(const int_type &c) { return eq_int_type(c, eof()) ? 0 : c; }
};

using octet_string = std::basic_string<octet_t, octet_traits>;
using octet_string = std::basic_string<octet_t>;

class SEXP_PUBLIC_SYMBOL sexp_simple_string_t : public octet_string, private sexp_char_defs_t {
public:
Expand Down Expand Up @@ -278,10 +278,7 @@ class SEXP_PUBLIC_SYMBOL sexp_string_t : public sexp_object_t {
sexp_string_t(void) : with_presentation_hint(false) {}
sexp_string_t(sexp_input_stream_t *sis) { parse(sis); };

~sexp_string_t()
{

}
~sexp_string_t() = default;

const bool has_presentation_hint(void) const noexcept { return with_presentation_hint; }
const sexp_simple_string_t &get_string(void) const noexcept { return data_string; }
Expand Down

0 comments on commit 905ab2c

Please sign in to comment.