Browse Source

view: minor changes

Michele Caini 2 years ago
parent
commit
a5e259c19b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/entt/entity/view.hpp

+ 2 - 2
src/entt/entity/view.hpp

@@ -740,7 +740,7 @@ public:
      * otherwise.
      */
     [[nodiscard]] entity_type front() const noexcept {
-        return (!view || view->empty()) ? null : *view->begin();
+        return empty() ? null : *view->begin();
     }
 
     /**
@@ -749,7 +749,7 @@ public:
      * otherwise.
      */
     [[nodiscard]] entity_type back() const noexcept {
-        return (!view || view->empty()) ? null : *view->rbegin();
+        return empty() ? null : *view->rbegin();
     }
 
     /**