add generated method for comparing queue messages

Change-Id: I5bd7e94c5b185aceb79c568737d0ceda88dc9042
diff --git a/aos/common/queue.h b/aos/common/queue.h
index 2098e66..5f6adeb 100644
--- a/aos/common/queue.h
+++ b/aos/common/queue.h
@@ -39,6 +39,9 @@
   // Writes the contents of the message to the provided buffer.
   size_t Print(char *buffer, int length) const;
 
+  // Compares two messages for equality, excluding their sent_time.
+  bool EqualsNoTime(const Message & /*other*/) const { return true; }
+
   static const MessageType *GetType();
 };