- Timestamp:
- Apr 25, 2025, 7:39:09 AM (5 months ago)
- Branches:
- master
- Children:
- 65bd3c2
- Parents:
- b195498
- Location:
- src/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/ScopedMap.hpp
rb195498 r6b33e89 10 10 // Created On : Wed Dec 2 11:37:00 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Feb 15 08:41:28 202213 // Update Count : 512 // Last Modified On : Mon May 13 07:32:09 2024 13 // Update Count : 6 14 14 // 15 15 … … 31 31 class ScopedMap { 32 32 typedef std::map< Key, Value > MapType; 33 public: 33 34 struct Scope { 34 35 MapType map; … … 44 45 Scope & operator= (Scope &&) = default; 45 46 }; 47 private: 46 48 typedef std::vector< Scope > ScopeList; 47 49 -
src/Common/SemanticError.hpp
rb195498 r6b33e89 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Dec 15 21:04:32 202413 // Update Count : 7 712 // Last Modified On : Tue Apr 1 11:11:33 2025 13 // Update Count : 79 14 14 // 15 15 … … 65 65 {"gcc-attributes" , Severity::Warn, "invalid attribute: %s." }, 66 66 {"c++-like-copy" , Severity::Warn, "Constructor from reference is not a valid copy constructor." }, 67 {"depreciated-trait-syntax" , Severity::Warn, "trait type-parameters are now specified using the forall clause." },67 {"depreciated-trait-syntax" , Severity::Warn, "trait type-parameters, trait name(T,U), now specified using forall clause, forall(T,U) trait name." }, 68 68 }; 69 69
Note:
See TracChangeset
for help on using the changeset viewer.