Skip to content

Commit

Permalink
Update type_traits.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
FredM67 committed Mar 19, 2024
1 parent 49e30d0 commit 47d759f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Mk2_3phase_RFdatalog_temp/type_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/

// ArduinoJson - https://arduinojson.org
// Copyright © 2014-2023, Benoit BLANCHON
// Copyright © 2014-2024, Benoit BLANCHON
// MIT License

#pragma once
Expand Down
6 changes: 3 additions & 3 deletions Mk2_3phase_RFdatalog_temp/type_traits/is_convertible.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ struct is_convertible
static int probe(To);
static char probe(...);

static From& _from;
static From& from_;

public:
static const bool value = sizeof(probe(_from)) == sizeof(int);
public:
static const bool value = sizeof(probe(from_)) == sizeof(int);
};
#ifdef _MSC_VER
#pragma warning(pop)
Expand Down

0 comments on commit 47d759f

Please sign in to comment.