Error Messages During Compile

Anyone able to help me with the below error messages? I get an error no matter what I am trying to compile. TIA.

Arduino: 1.8.1 (Windows 10), Board: "Arduino/Genuino Uno"

In file included from C:\Users\user\Box Sync\Personal\Elegoo Smart Robot Car Kit V2.0.2017.08.21\Elegoo Smart Robot Car Kit V2.0.2017.08.21\English\Lesson 1 Make The Car Move\AUTO_GO_\AUTO_GO_.ino:4:0:

C:\Users\user\Documents\Arduino\libraries\IRremote/ir_Lego_PF_BitStreamEncoder.h: In member function 'int LegoPfBitStreamEncoder::getRepeatStopPause() const':

C:\Users\user\Documents\Arduino\libraries\IRremote/ir_Lego_PF_BitStreamEncoder.h:107:38: warning: integer overflow in expression [-Woverflow]

return STOP_PAUSE_DURATION + 5 * MAX_MESSAGE_LENGTH - messageLength;

^

In file included from C:\Users\user\Documents\Arduino\libraries\IRremote\ir_Lego_PF.cpp:3:0:

C:\Users\user\Documents\Arduino\libraries\IRremote\ir_Lego_PF_BitStreamEncoder.h: In member function 'int LegoPfBitStreamEncoder::getRepeatStopPause() const':

C:\Users\user\Documents\Arduino\libraries\IRremote\ir_Lego_PF_BitStreamEncoder.h:107:38: warning: integer overflow in expression [-Woverflow]

return STOP_PAUSE_DURATION + 5 * MAX_MESSAGE_LENGTH - messageLength;

^

C:\Users\user\AppData\Local\Temp\1\ccKFvURj.ltrans0.ltrans.o: In function `main':

C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/main.cpp:46: undefined reference to `loop'

collect2.exe: error: ld returned 1 exit status

exit status 1
Error compiling for board Arduino/Genuino Uno.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

Kinda hard to relate to error messages without seeing what caused them. Otherwise, just read the message - the loop() function doesn't exist.

rydog311:
Anyone able to help me with the below error messages? I get an error no matter what I am trying to compile.

So a simple blink (or other example that comes with the IDE) will not compile?

I agree with DKWatson that your code seems to be lacking the loop() function.

(deleted)